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