mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
const baseConfig = require('../../jest.config.base');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
|
|
testEnvironment: 'jsdom',
|
|
moduleNameMapper: {
|
|
...baseConfig.moduleNameMapper,
|
|
'\\.svg$': '<rootDir>/__mocks__/fileMock.js',
|
|
},
|
|
};
|