Skip to content

Commit

Permalink
try swapping /e for /d
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoar committed Dec 13, 2023
1 parent 03d68cd commit b4ceedb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/babel-config/src/__tests__/tsconfigParsing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ describe('TypeScript config file parsing', () => {

describe('getPathsFromTypeScriptConfig', () => {
const FAKE_API_ROOT =
process.platform === 'win32' ? '/e/redwood-app/api' : '/redwood-app/api'
process.platform === 'win32' ? '/d/redwood-app/api' : '/redwood-app/api'
const FAKE_WEB_ROOT =
process.platform === 'win32' ? '/e/redwood-app/web' : '/redwood-app/web'
process.platform === 'win32' ? '/d/redwood-app/web' : '/redwood-app/web'

it("returns an empty object if there's no TypeScript config files", () => {
vol.fromNestedJSON(
Expand Down

0 comments on commit b4ceedb

Please sign in to comment.