diff --git a/src/graphql/mutations/__tests__/CreateAIReply.js b/src/graphql/mutations/__tests__/CreateAIReply.js index 425caf9c..8853d33e 100644 --- a/src/graphql/mutations/__tests__/CreateAIReply.js +++ b/src/graphql/mutations/__tests__/CreateAIReply.js @@ -3,10 +3,10 @@ jest.mock('util/openai', () => ({ default: { chat: { completions: { - create: jest.fn() - } - } - } + create: jest.fn(), + }, + }, + }, })); import MockDate from 'mockdate';