TeamCity Extensions
Append screenshots for failed test after stack trace.
什么是TeamCity Extensions?
TeamCity Extensions是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Append screenshots for failed test after stack trace.”。
扩展截图
下载TeamCity Extensions扩展crx文件
下载TeamCity Extensions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A small Chrome extension for TeamCity to provide some additional functions to the user interface.
Features
* Show image published to artifacts after console log
Extension parse test stdout command ##teamcity[publishArtifacts ''] and inject
tag after stacktrace
docs: https://confluence.jetbrains.com/display/TCD18/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-PublishingArtifactswhiletheBuildisStillinProgress
v0.2.0
- Supprot for TeamCity v2020.1
v0.1.4
- Support for escaped symbols in artifact path
- Added download links for all artifacts published in test
v0.1.3
- Support for TeamCity 2018.1.1 扩展基本信息
| 名称 | |
| ID | liecempkpelaenjhncgnhnefkdfhbocm |
| 官方URL | https://chromewebstore.google.com/detail/teamcity-extensions/liecempkpelaenjhncgnhnefkdfhbocm |
| 简介 | Append screenshots for failed test after stack trace. |
| 文件大小 | 10.67 KB |
| 安装次数 | 238 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2020-06-16 |
| 上架时间 | 2020-06-15 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TeamCity Extensions",
"short_name": "TCE",
"version": "0.2.0",
"description": "Append screenshots for failed test after stack trace.",
"minimum_chrome_version": "20",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/injector.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"js\/*"
]
} | |