@allurereport/core-api 3.0.0-beta.10 → 3.0.0-beta.11

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.
@@ -1,5 +1,4 @@
1
1
  import type { TestLabel } from "./metadata.js";
2
- import type { TestResult } from "./model.js";
3
2
  export interface EnvironmentItem {
4
3
  name: string;
5
4
  values: string[];
@@ -13,7 +12,3 @@ export type EnvironmentDescriptor = {
13
12
  matcher: (payload: EnvironmentMatcherPayload) => boolean;
14
13
  };
15
14
  export type EnvironmentsConfig = Record<string, EnvironmentDescriptor>;
16
- export type EnvTestGroup = Pick<TestResult, "fullName" | "name" | "status"> & {
17
- id: string;
18
- testResultsByEnv: Record<string, TestResult>;
19
- };
package/dist/model.d.ts CHANGED
@@ -46,6 +46,13 @@ export interface TestResult {
46
46
  retries?: TestResult[];
47
47
  categories?: any;
48
48
  }
49
+ export interface TestEnvGroup {
50
+ id: string;
51
+ name: string;
52
+ fullName?: string;
53
+ status: TestStatus;
54
+ testResultsByEnv: Record<string, string>;
55
+ }
49
56
  export interface TestFixtureResult {
50
57
  id: string;
51
58
  testResultIds: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/core-api",
3
- "version": "3.0.0-beta.10",
3
+ "version": "3.0.0-beta.11",
4
4
  "description": "Allure Core API",
5
5
  "keywords": [
6
6
  "allure"