mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 23:15:23 +01:00
12 lines
362 B
JavaScript
12 lines
362 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,
|
|
};
|