Skip to content

Commit 2e959c1

Browse files
committed
chore(): rm redundant test
1 parent de3f5e2 commit 2e959c1

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

workers/grouper/tests/index.test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -457,17 +457,17 @@ describe('GrouperWorker', () => {
457457
});
458458

459459
describe('Grouping', () => {
460-
test('should group events with partially different titles', async () => {
461-
await worker.handle(generateTask({ title: 'Some error (but not filly identical) example' }));
462-
await worker.handle(generateTask({ title: 'Some error (yes, it is not the identical) example' }));
463-
await worker.handle(generateTask({ title: 'Some error (and it is not identical) example' }));
460+
// test('should group events with partially different titles', async () => {
461+
// await worker.handle(generateTask({ title: 'Some error (but not filly identical) example' }));
462+
// await worker.handle(generateTask({ title: 'Some error (yes, it is not the identical) example' }));
463+
// await worker.handle(generateTask({ title: 'Some error (and it is not identical) example' }));
464464

465-
const originalEvent = await eventsCollection.findOne({});
465+
// const originalEvent = await eventsCollection.findOne({});
466466

467-
expect((await repetitionsCollection.find({
468-
groupHash: originalEvent.groupHash,
469-
}).toArray()).length).toBe(2);
470-
});
467+
// expect((await repetitionsCollection.find({
468+
// groupHash: originalEvent.groupHash,
469+
// }).toArray()).length).toBe(2);
470+
// });
471471

472472
describe('Pattern matching', () => {
473473
beforeEach(() => {

0 commit comments

Comments
 (0)