Files
trezor-suite/packages/connect-web/jest.config.js
2023-11-20 09:19:59 +01:00

9 lines
260 B
JavaScript

const { testPathIgnorePatterns, ...baseConfig } = require('../../jest.config.base');
module.exports = {
...baseConfig,
testMatch: ['**/tests/*.test.ts'],
testPathIgnorePatterns: [...testPathIgnorePatterns, 'e2e'],
testEnvironment: 'jsdom',
};