Skip to content

Commit

Permalink
add .only to be explicit about it
Browse files Browse the repository at this point in the history
  • Loading branch information
nedsalk committed Jul 7, 2024
1 parent b454fa3 commit aeb7ff8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('launchNode-singular-test', () => {
afterAll(async () => {
await expect(fetch(killedNodeUrl)).rejects.toThrow('fetch failed');

Check failure on line 13 in packages/account/src/test-utils/launchNode-singular-test.test.ts

View workflow job for this annotation

GitHub Actions / node@18

packages/account/src/test-utils/launchNode-singular-test.test.ts > launchNode-singular-test

AssertionError: expected [Function] to throw error including 'fetch failed' but got 'Failed to parse URL from ' - Expected + Received - fetch failed + Failed to parse URL from ❯ packages/account/src/test-utils/launchNode-singular-test.test.ts:13:5

Check failure on line 13 in packages/account/src/test-utils/launchNode-singular-test.test.ts

View workflow job for this annotation

GitHub Actions / node@20

packages/account/src/test-utils/launchNode-singular-test.test.ts > launchNode-singular-test

AssertionError: expected [Function] to throw error including 'fetch failed' but got 'Failed to parse URL from ' - Expected + Received - fetch failed + Failed to parse URL from ❯ packages/account/src/test-utils/launchNode-singular-test.test.ts:13:5

Check failure on line 13 in packages/account/src/test-utils/launchNode-singular-test.test.ts

View workflow job for this annotation

GitHub Actions / node@22

packages/account/src/test-utils/launchNode-singular-test.test.ts > launchNode-singular-test

AssertionError: expected [Function] to throw error including 'fetch failed' but got 'Failed to parse URL from ' - Expected + Received - fetch failed + Failed to parse URL from ❯ packages/account/src/test-utils/launchNode-singular-test.test.ts:13:5
});
test('synchronous cleanup kills node before test runner exits', async () => {
test.only('synchronous cleanup kills node before test runner exits', async () => {
const { cleanup, url } = await launchNode();
killedNodeUrl = url;
cleanup();
Expand Down

0 comments on commit aeb7ff8

Please sign in to comment.