File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ import { createProgram } from '../../../../packages/schema/src/cli';
99import { execSync } from '../../../../packages/schema/src/utils/exec-utils' ;
1010import { createNpmrc } from './share' ;
1111
12- describe ( 'CLI init command tests' , ( ) => {
12+ // Skipping these tests as they seem to cause hangs intermittently when running with other tests
13+ // eslint-disable-next-line jest/no-disabled-tests
14+ describe . skip ( 'CLI init command tests' , ( ) => {
1315 let origDir : string ;
1416
1517 beforeEach ( ( ) => {
@@ -39,9 +41,7 @@ describe('CLI init command tests', () => {
3941 checkDependency ( '@zenstackhq/runtime' , false , true ) ;
4042 } ) ;
4143
42- // Disabled because it blows up memory on MAC, not sure why ...
43- // eslint-disable-next-line jest/no-disabled-tests
44- it . skip ( 'init project t3 yarn std' , async ( ) => {
44+ it ( 'init project t3 yarn std' , async ( ) => {
4545 execSync ( 'npx --yes create-t3-app@latest --prisma --CI --noGit .' , 'inherit' , {
4646 npm_config_user_agent : 'yarn' ,
4747 npm_config_cache : getWorkspaceNpmCacheFolder ( __dirname ) ,
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ describe('tRPC Routers Generation Tests', () => {
2121 `${ path . join ( __dirname , '../../../../../.build/zenstackhq-sdk-' + ver + '.tgz' ) } ` ,
2222 `${ path . join ( __dirname , '../../../../../.build/zenstackhq-runtime-' + ver + '.tgz' ) } ` ,
2323 `${ path . join ( __dirname , '../../../../../.build/zenstackhq-trpc-' + ver + '.tgz' ) } ` ,
24+ `${ path . join ( __dirname , '../../../../../.build/zenstackhq-server-' + ver + '.tgz' ) } ` ,
2425 ] ;
2526 const deps = depPkgs . join ( ' ' ) ;
2627
You can’t perform that action at this time.
0 commit comments