Skip to content

Commit ae8c505

Browse files
committed
Add CI workflow and remove broken prepare script
1 parent d211801 commit ae8c505

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/__tests__/e2e/init.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
import { describe, it, expect, beforeEach, afterEach } from 'vitest';
12-
import { execSync, type ExecSyncOptionsWithBufferEncoding } from 'child_process';
12+
import { execSync } from 'child_process';
1313
import * as fs from 'fs';
1414
import * as path from 'path';
1515
import * as os from 'os';
@@ -39,7 +39,7 @@ function run(args: string, opts?: { cwd?: string }): string {
3939
env: { ...process.env, NO_COLOR: '1', CI: '1' },
4040
encoding: 'utf-8',
4141
stdio: ['pipe', 'pipe', 'pipe'], // capture stdout, suppress stderr
42-
} as ExecSyncOptionsWithBufferEncoding).toString();
42+
}).toString();
4343
}
4444

4545
/**

0 commit comments

Comments
 (0)