There was an error while loading. Please reload this page.
1 parent 9443066 commit 4afbcffCopy full SHA for 4afbcff
1 file changed
test/cli/tsconfig.spec.ts
@@ -10,7 +10,9 @@ beforeEach(async () => {
10
process.chdir(temp);
11
});
12
13
+const originalWorkingDirectory = process.cwd();
14
afterEach(async () => {
15
+ process.chdir(originalWorkingDirectory);
16
// TODO [node@12]: `rmdir` has `recursive` option
17
await fs.remove(temp);
18
0 commit comments