1 | import Reporter from './Reporter';
|
2 | import Test from '../Test';
|
3 | import Suite from '../Suite';
|
4 | export default class TeamCity extends Reporter {
|
5 | _ignoredTestIds: {
|
6 | [sessionId: string]: {
|
7 | [testId: string]: boolean;
|
8 | };
|
9 | } | undefined;
|
10 | runStart(): void;
|
11 | testStart(test: Test): void;
|
12 | testEnd(test: Test): void;
|
13 | suiteStart(suite: Suite): void;
|
14 | suiteEnd(suite: Suite): void;
|
15 | private _escapeString;
|
16 | private _notifyUnrunTests;
|
17 | private _sendMessage;
|
18 | }
|