Skip to content

Commit 2354010

Browse files
committed
test(e2e): relax workflow inventory timeout
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
1 parent bce7dac commit 2354010

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

test/e2e-scenario/support-tests/e2e-scenarios-workflow.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ import path from "node:path";
88

99
import { describe, expect, it } from "vitest";
1010
import YAML from "yaml";
11-
12-
import { testTimeoutOptions } from "../../helpers/timeouts";
1311
import {
1412
evaluateE2eVitestWorkflowDispatchSelectors,
1513
readFreeStandingJobsInventory,
1614
validateE2eVitestScenariosWorkflowBoundary,
1715
validateFreeStandingWorkflowInventory,
1816
} from "../../../tools/e2e-scenarios/workflow-boundary.mts";
17+
import { testTimeoutOptions } from "../../helpers/timeouts";
1918

2019
function readWorkflow(): Record<string, unknown> {
2120
return YAML.parse(
@@ -565,7 +564,7 @@ describe("e2e-vitest-scenarios workflow boundary", () => {
565564
},
566565
);
567566

568-
it("derives the free-standing inventory from workflow job metadata", () => {
567+
it("derives the free-standing inventory from workflow job metadata", { timeout: 60_000 }, () => {
569568
const inventory = readFreeStandingJobsInventory();
570569
expect(validateFreeStandingWorkflowInventory()).toEqual([]);
571570
expect(inventory.allowedJobs).toContain("openshell-version-pin-vitest");

0 commit comments

Comments
 (0)