mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-11 09:54:10 +01:00
9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
const { testPathIgnorePatterns, ...baseConfig } = require('../../jest.config.base');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
testMatch: ['**/tests/*.test.ts'],
|
|
testPathIgnorePatterns: [...testPathIgnorePatterns, 'e2e'],
|
|
testEnvironment: 'jsdom',
|
|
};
|