Skip to content

Commit

Permalink
chore: update test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
benyap committed Oct 21, 2023
1 parent e901ce5 commit 11bb8e8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/steps/loadTSConfig.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe("steps/loadTSConfig", () => {
"./app/*",
],
},
"pathsBasePath": ".",
"pathsBasePath": "(relative)/test/fixtures/tsconfig",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -47,20 +47,20 @@ describe("steps/loadTSConfig", () => {
config.options.pathsBasePath = toRelativePath(config.options.pathsBasePath);
expect(config.options).toMatchInlineSnapshot(`
{
"baseUrl": "test/fixtures/tsconfig/nested",
"baseUrl": "(relative)/test/fixtures/tsconfig/nested",
"configFilePath": undefined,
"lib": [
"lib.es2015.d.ts",
],
"module": 1,
"moduleResolution": 2,
"outDir": "dist",
"outDir": "(relative)/test/fixtures/tsconfig/dist",
"paths": {
"~/*": [
"./src/*",
],
},
"pathsBasePath": "test/fixtures/tsconfig/nested",
"pathsBasePath": "(relative)/test/fixtures/tsconfig/nested",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -83,13 +83,13 @@ describe("steps/loadTSConfig", () => {
],
"module": 1,
"moduleResolution": 2,
"outDir": "dist",
"outDir": "(relative)/test/fixtures/tsconfig/dist",
"paths": {
"~/*": [
"./src/*",
],
},
"pathsBasePath": "test/fixtures/tsconfig/nested",
"pathsBasePath": "(relative)/test/fixtures/tsconfig/nested",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
Expand Down Expand Up @@ -118,7 +118,7 @@ describe("steps/loadTSConfig", () => {
"./src/*",
],
},
"pathsBasePath": ".",
"pathsBasePath": "(relative)/test/fixtures/tsconfig",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": undefined,
Expand Down

0 comments on commit 11bb8e8

Please sign in to comment.