all repos — caroster @ 406456e1af7399c4bf12340f443334a004070db9

[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;