Run tests alphabetically
This commit is contained in:
parent
bff57991d0
commit
2ef69a80db
|
@ -1,7 +1,8 @@
|
||||||
/** @type {import('@jest/types').Config.InitialOptions} */
|
/** @type {import('@jest/types').Config.InitialOptions} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
rootDir: '..',
|
rootDir: '..',
|
||||||
testMatch: ['<rootDir>/e2e/tests/**/*.spec.ts'],
|
testSequencer: '<rootDir>/e2e/testSequencer.js',
|
||||||
|
testMatch: ['<rootDir>/e2e/tests/assorted/*.spec.ts'],
|
||||||
testTimeout: 120000,
|
testTimeout: 120000,
|
||||||
maxWorkers: 1,
|
maxWorkers: 1,
|
||||||
globalSetup: '<rootDir>/e2e/globalSetup.ts',
|
globalSetup: '<rootDir>/e2e/globalSetup.ts',
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
const Sequencer = require('@jest/test-sequencer').default;
|
||||||
|
|
||||||
|
class CustomSequencer extends Sequencer {
|
||||||
|
sort(tests) {
|
||||||
|
// Test structure information
|
||||||
|
// https://github.com/facebook/jest/blob/6b8b1404a1d9254e7d5d90a8934087a9c9899dab/packages/jest-runner/src/types.ts#L17-L21
|
||||||
|
const copyTests = Array.from(tests);
|
||||||
|
return copyTests.sort((testA, testB) => (testA.path > testB.path ? 1 : -1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = CustomSequencer;
|
Loading…
Reference in New Issue