mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
13 lines
391 B
JavaScript
13 lines
391 B
JavaScript
|
|
/** @type {import('@jest/types').Config.InitialOptions} */
|
||
|
|
module.exports = {
|
||
|
|
rootDir: '..',
|
||
|
|
testMatch: ['<rootDir>/test/**/*.test.js'],
|
||
|
|
testTimeout: 120000,
|
||
|
|
maxWorkers: 1,
|
||
|
|
globalSetup: 'detox/runners/jest/globalSetup',
|
||
|
|
globalTeardown: 'detox/runners/jest/globalTeardown',
|
||
|
|
reporters: ['jest-junit'],
|
||
|
|
testEnvironment: 'detox/runners/jest/testEnvironment',
|
||
|
|
verbose: true,
|
||
|
|
};
|