From f4894155420997c9c8a33ca061f5cc53d2a5cfc5 Mon Sep 17 00:00:00 2001 From: Erin Millard Date: Sat, 27 Apr 2024 19:08:45 +1000 Subject: [PATCH] WIP --- test/vitest/n_EB_E2p_EB_E.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/vitest/n_EB_E2p_EB_E.spec.ts b/test/vitest/n_EB_E2p_EB_E.spec.ts index ffb8848..a98b770 100644 --- a/test/vitest/n_EB_E2p_EB_E.spec.ts +++ b/test/vitest/n_EB_E2p_EB_E.spec.ts @@ -71,9 +71,9 @@ describe("n_EB_E2p_EB_E()", () => { expect.any(Number), expect.any(Number), ]); - expect(actual[0]).toBeCloseTo(expected[0], 5); // TODO: figure out why low accuracy - expect(actual[1]).toBeCloseTo(expected[1], 5); // TODO: figure out why low accuracy - expect(actual[2]).toBeCloseTo(expected[2], 5); // TODO: figure out why low accuracy + expect(actual[0]).toBeCloseTo(expected[0], 8); + expect(actual[1]).toBeCloseTo(expected[1], 8); + expect(actual[2]).toBeCloseTo(expected[2], 8); }, TEST_DURATION + 1000, );