@allurereport/core-api 3.0.0-beta.23 → 3.0.0-beta.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ci.d.ts +3 -1
- package/dist/ci.js +1 -0
- package/dist/history.d.ts +1 -0
- package/dist/utils/environment.d.ts +1 -1
- package/package.json +1 -1
package/dist/ci.d.ts
CHANGED
|
@@ -6,11 +6,13 @@ export declare enum CiType {
|
|
|
6
6
|
Drone = "drone",
|
|
7
7
|
Github = "github",
|
|
8
8
|
Gitlab = "gitlab",
|
|
9
|
-
Jenkins = "jenkins"
|
|
9
|
+
Jenkins = "jenkins",
|
|
10
|
+
Local = "local"
|
|
10
11
|
}
|
|
11
12
|
export interface CiDescriptor {
|
|
12
13
|
type: CiType;
|
|
13
14
|
detected: boolean;
|
|
15
|
+
repoName: string;
|
|
14
16
|
jobUid: string;
|
|
15
17
|
jobUrl: string;
|
|
16
18
|
jobName: string;
|
package/dist/ci.js
CHANGED
package/dist/history.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { EnvironmentsConfig } from "../environment.js";
|
|
2
2
|
import type { TestEnvGroup, TestResult } from "../model.js";
|
|
3
3
|
export declare const DEFAULT_ENVIRONMENT = "default";
|
|
4
|
-
export declare const matchEnvironment: (envConfig: EnvironmentsConfig, tr: TestResult) => string;
|
|
4
|
+
export declare const matchEnvironment: (envConfig: EnvironmentsConfig, tr: Pick<TestResult, "labels">) => string;
|
|
5
5
|
export declare const getRealEnvsCount: (group: TestEnvGroup) => number;
|