Skip to content

Commit

Permalink
chore: fix a borked test caused by shallow clone (#4276)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-ebey authored Sep 26, 2022
1 parent 68790fb commit b8cfb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/tsconfig-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ test("allows for `extends` in tsconfig", async () => {
let tsconfig = await getTsConfig(fixture.projectDir);

// our base config only sets a few options, so our local config should fill in the missing ones
let expected = { ...DEFAULT_CONFIG };
let expected = JSON.parse(JSON.stringify({ ...DEFAULT_CONFIG }));
// these were defined by the base config
delete expected.compilerOptions.allowJs;
delete expected.compilerOptions.baseUrl;
Expand Down

0 comments on commit b8cfb59

Please sign in to comment.