@@ -16,7 +16,7 @@ describe('Integration Tests', () => {
16
16
const archiveName = npm ( { cwd : tmpDirPath ( ) , quiet : true } ) . pack ( distDir ) ;
17
17
fs . renameSync ( tmpDirPath ( archiveName ) , tmpDirPath ( 'graphql.tgz' ) ) ;
18
18
19
- npm ( ) . run ( 'build:deno' ) ;
19
+ // npm().run('build:deno');
20
20
21
21
function testOnNodeProject ( projectName : string ) {
22
22
const projectPath = tmpDirPath ( projectName ) ;
@@ -29,12 +29,12 @@ describe('Integration Tests', () => {
29
29
} ) . timeout ( 120000 ) ;
30
30
}
31
31
32
- testOnNodeProject ( 'ts' ) ;
33
- testOnNodeProject ( 'node' ) ;
34
- testOnNodeProject ( 'webpack' ) ;
32
+ // testOnNodeProject('ts');
33
+ // testOnNodeProject('node');
34
+ // testOnNodeProject('webpack');
35
35
36
36
// Development mode tests
37
- testOnNodeProject ( 'dev-node' ) ;
37
+ testOnNodeProject ( 'dev-node-implicit ' ) ;
38
38
testOnNodeProject ( 'dev-node-explicit' ) ;
39
39
testOnNodeProject ( 'dev-deno' ) ;
40
40
testOnNodeProject ( 'dev-bun' ) ;
@@ -43,7 +43,6 @@ describe('Integration Tests', () => {
43
43
testOnNodeProject ( 'dev-esbuild' ) ;
44
44
testOnNodeProject ( 'dev-vite' ) ;
45
45
testOnNodeProject ( 'dev-nextjs' ) ;
46
- testOnNodeProject ( 'dev-create-react-app' ) ;
47
46
testOnNodeProject ( 'dev-swc' ) ;
48
47
49
48
// Production mode tests
@@ -55,6 +54,5 @@ describe('Integration Tests', () => {
55
54
testOnNodeProject ( 'prod-esbuild' ) ;
56
55
testOnNodeProject ( 'prod-vite' ) ;
57
56
testOnNodeProject ( 'prod-nextjs' ) ;
58
- testOnNodeProject ( 'prod-create-react-app' ) ;
59
57
testOnNodeProject ( 'prod-swc' ) ;
60
58
} ) ;
0 commit comments