Skip to content

Commit f776eb0

Browse files
committed
fix(#374 | template deps): remove dep install test
1 parent 5fa4187 commit f776eb0

1 file changed

Lines changed: 0 additions & 34 deletions

File tree

apps/create-hypergraph/test/Cli.test.ts

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)