feat/e2e-testing #31

Merged
max merged 10 commits from feat/e2e-testing into main 2026-02-03 22:29:44 +01:00
Showing only changes of commit 2ada8ff474 - Show all commits

View File

@@ -21,24 +21,6 @@ test('fastHashArray doesnt product collisions', () => {
expect(hash_a).not.toEqual(hash_b); expect(hash_a).not.toEqual(hash_b);
}); });
test('fastHashArray is fast(ish) < 20ms', () => {
const a = new Int32Array(10_000);
const t0 = performance.now();
fastHashArrayBuffer(a);
const t1 = performance.now();
a[0] = 1;
fastHashArrayBuffer(a);
const t2 = performance.now();
expect(t1 - t0).toBeLessThan(20);
expect(t2 - t1).toBeLessThan(20);
});
// test if the fastHashArray function is deterministic // test if the fastHashArray function is deterministic
test('fastHashArray is deterministic', () => { test('fastHashArray is deterministic', () => {
const a = new Int32Array(1000); const a = new Int32Array(1000);