From 1907f7257dfe889098f64d6e28ca4c9114ade4e7 Mon Sep 17 00:00:00 2001 From: Dima Vyshniakov Date: Sun, 3 Dec 2023 00:27:13 +0100 Subject: [PATCH] fix --- jest.config.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/jest.config.ts b/jest.config.ts index 79d71fe6..61a77420 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -1,12 +1,12 @@ export default { - preset: 'ts-jest', - testEnvironment: 'jest-environment-jsdom', - transform: { - '^.+\\.tsx?$': 'ts-jest', - // process `*.tsx` files with `ts-jest` - }, - moduleNameMapper: { - '\\.(gif|ttf|eot|svg|png)$': 'identity-obj-proxy', - '\\.css$': 'identity-obj-proxy', - }, + preset: 'ts-jest', + testEnvironment: 'jest-environment-jsdom', + transform: { + '^.+\\.tsx?$': 'ts-jest', + // process `*.tsx` files with `ts-jest` + }, + moduleNameMapper: { + '\\.(gif|ttf|eot|svg|png)$': 'identity-obj-proxy', + '\\.css$': 'identity-obj-proxy', + }, };