We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9443066 commit 0322eb4Copy full SHA for 0322eb4
test/cli/tsconfig.spec.ts
@@ -10,9 +10,11 @@ beforeEach(async () => {
10
process.chdir(temp);
11
});
12
13
+const originalWorkingDirectory = process.cwd();
14
afterEach(async () => {
15
// TODO [node@12]: `rmdir` has `recursive` option
16
await fs.remove(temp);
17
+ process.chdir(originalWorkingDirectory);
18
19
20
const locate = (project: string | undefined, fileNames: string[] = []) =>
0 commit comments