all repos — caroster @ ab8a41da0d4ed69e49cd079c63b765d39d393dbd

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