File tree Expand file tree Collapse file tree
apps/create-hypergraph/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -234,38 +234,4 @@ describe('create-hypergraph CLI', () => {
234234 }
235235 } ) ,
236236 ) ;
237-
238- it . effect (
239- 'test dependency installation when not skipped' ,
240- ( ) =>
241- Effect . gen ( function * ( ) {
242- yield * cleanupTestDirs ( ) ;
243- const tempDir = yield * createTempDir ( ) ;
244-
245- try {
246- // Run CLI without skipping dependency installation
247- const output = yield * run (
248- [
249- '--template' ,
250- 'vite-react' ,
251- '--package-manager' ,
252- 'pnpm' ,
253- '--skip-initialize-git' ,
254- // Note: not skipping install deps
255- 'test-deps-app' ,
256- ] ,
257- tempDir ,
258- ) ;
259-
260- expect ( output ) . toContain ( 'Successfully scaffolded your hypergraph enabled app' ) ;
261-
262- // Verify node_modules directory was created
263- const projectPath = join ( tempDir , 'test-deps-app' ) ;
264- expect ( existsSync ( join ( projectPath , 'node_modules' ) ) ) . toBe ( true ) ;
265- } finally {
266- yield * cleanupTempDir ( tempDir ) ;
267- }
268- } ) ,
269- { timeout : 60000 } , // 60 second timeout for dependency installation
270- ) ;
271237} ) ;
You can’t perform that action at this time.
0 commit comments