all repos — caroster @ 94a3ea539189797f3e632b4416973d922840c31c

[Octree] Group carpool to your event https://caroster.io

e2e/testSequencer.js (view raw)

1const Sequencer = require("@jest/test-sequencer").default;
2
3class CustomSequencer extends Sequencer {
4  sort(tests) {
5    return tests.sort((testA, testB) => testA.path.localeCompare(testB.path));
6  }
7}
8
9module.exports = CustomSequencer;