@allurereport/core-api
Advanced tools
+11
-0
| import type { TestLabel, TestLink, TestParameter } from "./metadata.js"; | ||
| import type { TestCase } from "./testCase.js"; | ||
| export type TestStatus = "failed" | "broken" | "passed" | "skipped" | "unknown"; | ||
| export type AllureCheckStatus = "passed" | "failed"; | ||
| export type TestStatusTransition = "regressed" | "fixed" | "malfunctioned" | "new"; | ||
| export type SeverityLevel = "blocker" | "critical" | "normal" | "minor" | "trivial"; | ||
| export interface AllureCheckResult { | ||
| name: string; | ||
| status: AllureCheckStatus; | ||
| tags?: string[]; | ||
| details: { | ||
| message?: string; | ||
| error?: string; | ||
| command: string; | ||
| }; | ||
| } | ||
| export interface SourceMetadata { | ||
@@ -7,0 +18,0 @@ readerId: string; |
+1
-1
| { | ||
| "name": "@allurereport/core-api", | ||
| "version": "3.7.0", | ||
| "version": "3.8.0", | ||
| "description": "Allure Core API", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
52119
0.5%1382
0.8%