mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
/**
|
|
* Jest configuration for web packages.
|
|
* Keeping this file next to the package.json file instead of providing configuration
|
|
* with `-c ../../jest.config.base` option in package.json scripts
|
|
* allows us to run jest tests directly from IDEs.
|
|
*/
|
|
const baseConfig = require('../../jest.config.base');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
};
|