File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
packages/create-cloudflare/e2e/tests/workers Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ import { join } from "path";
3
3
import { readJSON , readToml } from "helpers/files" ;
4
4
import { beforeAll , describe , expect } from "vitest" ;
5
5
import { deleteWorker } from "../../../scripts/common" ;
6
- import { TEST_TIMEOUT , workerTemplateToTest } from "../../helpers/constants" ;
6
+ import {
7
+ isWindows ,
8
+ TEST_TIMEOUT ,
9
+ workerTemplateToTest ,
10
+ } from "../../helpers/constants" ;
7
11
import { debuglog } from "../../helpers/debuglog" ;
8
12
import { test } from "../../helpers/index" ;
9
13
import { recreateLogFolder } from "../../helpers/log-stream" ;
@@ -18,10 +22,7 @@ import { getWorkerTests } from "./test-config";
18
22
const workerTests = getWorkerTests ( ) ;
19
23
20
24
describe
21
- . skipIf (
22
- workerTests . length === 0 ,
23
- // TODO: is this skip necessary?: isWindows
24
- )
25
+ . skipIf ( workerTests . length === 0 || isWindows )
25
26
. concurrent ( `E2E: Workers templates` , ( ) => {
26
27
beforeAll ( ( ctx ) => {
27
28
recreateLogFolder ( ctx ) ;
You can’t perform that action at this time.
0 commit comments