Skip to content

Commit

Permalink
ci: skip fixture tests that exercise the "dev registry"
Browse files Browse the repository at this point in the history
Reenable when #4241 lands and improves reliability of this test.
  • Loading branch information
petebacondarwin committed Nov 23, 2023
1 parent 5d7d3eb commit 0030dca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions fixtures/external-durable-objects-app/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { describe, expect, it, beforeAll, afterAll } from "vitest";
import type { ChildProcess } from "child_process";
import { type UnstableDevWorker, unstable_dev } from "wrangler";

// TODO: reenable when https://github.com/cloudflare/workers-sdk/pull/4241 lands
// and improves reliability of this test.
describe.skip(
"Pages Functions",
() => {
Expand Down
5 changes: 4 additions & 1 deletion fixtures/service-bindings-app/tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { describe, expect, it, beforeAll, afterAll } from "vitest";
import { UnstableDevWorker, unstable_dev } from "wrangler";
import path from "node:path";
describe("Service Bindings", () => {

// TODO: reenable when https://github.com/cloudflare/workers-sdk/pull/4241 lands
// and improves reliability of this test.
describe.skip("Service Bindings", () => {
let aWorker: UnstableDevWorker;

let bWorker: UnstableDevWorker;
Expand Down

0 comments on commit 0030dca

Please sign in to comment.