Increase time allowed for bincount

This commit is contained in:
Matthias 2022-12-05 14:08:25 +01:00 committed by GitHub
parent cb684daeb0
commit 9bf810fe40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ describe('binCount.ts', () => {
const res = binData(randomData, 5);
const endTime = Date.now();
expect(endTime - startTime).toBeLessThan(20);
expect(endTime - startTime).toBeLessThan(30);
expect(res.map((v) => v[1]).reduce((a, b) => a + b)).toEqual(randomData.length);
});