From 4e9b59741b58dda103b5475893cbced553c31e65 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Sat, 9 Mar 2024 13:11:22 -0800 Subject: [PATCH] chore: fix test name --- test/spec/database/fetch.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/spec/database/fetch.test.js b/test/spec/database/fetch.test.js index b92581b..c29708b 100644 --- a/test/spec/database/fetch.test.js +++ b/test/spec/database/fetch.test.js @@ -4,7 +4,7 @@ describe('basic fetch tests', () => { beforeEach(basicBeforeEach) afterEach(basicAfterEach) - test('make sure fetch-mock-jest is working correctly', async () => { + test('make sure fetch-mock is working correctly', async () => { expect(fetch.calls().length).toBe(0) const resp = await fetch(ALL_EMOJI) expect(resp.headers.get('etag')).toBe('W/xxx') @@ -14,7 +14,7 @@ describe('basic fetch tests', () => { expect(fetch.lastOptions()).toBe(undefined) }) - test('make sure fetch-mock-jest is working correctly 2', async () => { + test('make sure fetch-mock is working correctly 2', async () => { expect(fetch.calls().length).toBe(0) const resp = await fetch(ALL_EMOJI_NO_ETAG) expect(resp.headers.get('etag')).toBeFalsy() @@ -24,7 +24,7 @@ describe('basic fetch tests', () => { expect(fetch.lastOptions()).toBe(undefined) }) - test('make sure fetch-mock-jest is working correctly 3', async () => { + test('make sure fetch-mock is working correctly 3', async () => { expect(fetch.calls().length).toBe(0) const resp = await fetch(ALL_EMOJI, { method: 'HEAD' }) expect(resp.headers.get('etag')).toBe('W/xxx')