Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion fixtures/dev-registry/tests/dev-registry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as path from "node:path";
import { resolve } from "node:path";
/* eslint-disable workers-sdk/no-vitest-import-expect -- uses expect in module-scope helper functions */
import {
describe,
describe as baseDescribe,
expect,
onTestFailed,
onTestFinished,
Expand All @@ -18,6 +18,11 @@ import {
} from "../../../packages/vite-plugin-cloudflare/e2e/helpers";
import { runWranglerDev as baseRunWranglerDev } from "../../shared/src/run-wrangler-long-lived";

// TODO: These tests are consistently failing on Windows in CI and are blocking
// other work. Skipping them there as a temporary measure until the underlying
// issue is fixed. There's still value in running them on macOS and Linux.
const describe = baseDescribe.skipIf(process.platform === "win32");

const waitForTimeout = 20_000;
const cwd = resolve(__dirname, "..");
const tmpPathBase = path.join(os.tmpdir(), "wrangler-tests");
Expand Down
Loading