Skip to content

Commit

Permalink
chore: remove 'only' tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paambaati committed Jun 6, 2024
1 parent cb821ab commit 2c56dd7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions test/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,11 @@ t.test(
);

t.test(
'🧪 run() should correctly switch the working directory if given.',{ only: true },
'🧪 run() should correctly switch the working directory if given.',
async (t) => {
t.plan(1);
t.teardown(() => sandbox.restore());

nock('http://localhost.test')
.get('/dummy-cc-reporter')
.reply(200, async () => {
Expand All @@ -529,10 +529,7 @@ t.test(
});

const CUSTOM_WORKDIR = await realpath(tmpdir());
const filePath = joinPath(
CUSTOM_WORKDIR,
`./test.${EXE_EXT}`
);
const filePath = joinPath(CUSTOM_WORKDIR, `./test.${EXE_EXT}`);

try {
await run({
Expand Down

0 comments on commit 2c56dd7

Please sign in to comment.