Skip to content

Commit c710539

Browse files
committed
test: update test logic to fix windows CI
Minor changes to the testing setup to fix failures on Windows CI. (cherry picked from commit 5da0e48)
1 parent 6a52dcc commit c710539

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/legacy-cli/e2e/tests/build/rebuild-dot-dirname.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { setTimeout } from 'node:timers/promises';
22
import { getGlobalVariable } from '../../utils/env';
33
import { appendToFile, createDir, rimraf } from '../../utils/fs';
44
import { installWorkspacePackages } from '../../utils/packages';
5-
import { ng, waitForAnyProcessOutputToMatch } from '../../utils/process';
5+
import { killAllProcesses, ng, waitForAnyProcessOutputToMatch } from '../../utils/process';
66
import { ngServe, updateJsonFile, useSha } from '../../utils/project';
77

88
const goodRegEx = getGlobalVariable('argv')['esbuild']
@@ -52,5 +52,7 @@ export default async function () {
5252
await waitForAnyProcessOutputToMatch(goodRegEx);
5353
} finally {
5454
process.chdir(originalCwd);
55+
await killAllProcesses();
56+
await setTimeout(100);
5557
}
5658
}

0 commit comments

Comments
 (0)