diff --git a/packages/core/admin/server/controllers/__tests__/api-token.test.js b/packages/core/admin/server/controllers/__tests__/api-token.test.js index 50044f3032..225d851bfb 100644 --- a/packages/core/admin/server/controllers/__tests__/api-token.test.js +++ b/packages/core/admin/server/controllers/__tests__/api-token.test.js @@ -11,7 +11,7 @@ describe('API Token Controller', () => { type: 'read-only', }; - test('Fails if API Token already exists', async () => { + test('Fails if API Token already exist', async () => { const exists = jest.fn(() => true); const badRequest = jest.fn(); const ctx = createContext({ body }, { badRequest });