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
拡張機能の基本情報
名前 | TeamCity Extensions |
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\/*" ] } |