TeamCity Extensions

Append screenshots for failed test after stack trace.

TeamCity Extensions란 무엇입니까?

TeamCity Extensions은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Append screenshots for failed test after stack trace."입니다.

확장 프로그램 스크린샷

screenshot

TeamCity Extensions 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/*"
    ]
}