Skip to content

Commit

Permalink
Revert "Check if using relative paths fixes linux tests"
Browse files Browse the repository at this point in the history
This reverts commit 507baa0.
  • Loading branch information
toebeann committed Sep 23, 2022
1 parent d26645c commit c924ae1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/utils.spec/getOptions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ describe('local package', () => {
});
});

describe('when `--tsconfig="./tsconfig.json"`', () => {
describe('when `--tsconfig="tsconfig.json"`', () => {
beforeAll(async () => {
options = await getOptions(
await cli()
.options({ ...commonOptions })
.demandCommand(0)
.parse('--tsconfig="./tsconfig.json"')
.parse('--tsconfig="tsconfig.json"')
);
});

Expand Down Expand Up @@ -176,13 +176,13 @@ describe('local package', () => {
});
});

describe('when `--typedoc=./typedoc.json`', () => {
describe('when `--typedoc=typedoc.json`', () => {
beforeAll(async () => {
options = await getOptions(
await cli()
.options({ ...commonOptions })
.demandCommand(0)
.parse('--typedoc=./typedoc.json')
.parse('--typedoc=typedoc.json')
);
});

Expand Down

0 comments on commit c924ae1

Please sign in to comment.