69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
/**
|
|
* External Dependencies
|
|
*/
|
|
const { WC_E2E_SCREENSHOTS } = process.env;
|
|
const path = require( 'path' );
|
|
const fs = require( 'fs' );
|
|
|
|
/**
|
|
* Internal Dependencies
|
|
*/
|
|
const { resolveLocalE2ePath } = require( '../utils' );
|
|
|
|
const failureSetup = [];
|
|
if ( WC_E2E_SCREENSHOTS ) {
|
|
failureSetup.push(
|
|
path.resolve( __dirname, '../build/setup/jest.failure.js' )
|
|
);
|
|
}
|
|
const setupFilesAfterEnv = [
|
|
path.resolve( __dirname, '../build/setup/jest.setup.js' ),
|
|
...failureSetup,
|
|
'expect-puppeteer',
|
|
];
|
|
|
|
const localJestSetupFile = resolveLocalE2ePath( 'config/jest.setup.js' );
|
|
const moduleNameMap = resolveLocalE2ePath( '$1' );
|
|
const testSpecs = resolveLocalE2ePath( 'specs' );
|
|
|
|
if ( fs.existsSync( localJestSetupFile ) ) {
|
|
setupFilesAfterEnv.push( localJestSetupFile );
|
|
}
|
|
|
|
const combinedConfig = {
|
|
preset: 'jest-puppeteer',
|
|
clearMocks: true,
|
|
moduleFileExtensions: [ 'js' ],
|
|
testMatch: [
|
|
'**/*.(test|spec).js',
|
|
'*.(test|spec).js'
|
|
],
|
|
moduleNameMapper: {
|
|
'@woocommerce/e2e/tests/(.*)': moduleNameMap,
|
|
},
|
|
|
|
setupFiles: [ '<rootDir>/config/env.setup.js' ],
|
|
// A list of paths to modules that run some code to configure or set up the testing framework
|
|
// before each test
|
|
setupFilesAfterEnv,
|
|
|
|
// Sort test path alphabetically. This is needed so that `activate-and-setup` tests run first
|
|
testSequencer: '<rootDir>/config/jest-custom-sequencer.js',
|
|
// Set the test timeout in milliseconds.
|
|
testTimeout: parseInt( global.process.env.jest_test_timeout ),
|
|
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(woocommerce)/)',
|
|
],
|
|
|
|
testRunner: 'jest-circus/runner',
|
|
|
|
roots: [ testSpecs ],
|
|
};
|
|
|
|
if ( process.env.jest_test_spec ) {
|
|
combinedConfig.testMatch = [ process.env.jest_test_spec ];
|
|
}
|
|
|
|
module.exports = combinedConfig;
|