From 52e7e7c1295a102bec143b733facb586cc9d4ab8 Mon Sep 17 00:00:00 2001 From: miguel Date: Fri, 18 Feb 2022 16:56:22 +0000 Subject: [PATCH] fixing the tests of interpolation --- js/tests/interpolation_test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/tests/interpolation_test.js b/js/tests/interpolation_test.js index ed75a7890..801f936d3 100644 --- a/js/tests/interpolation_test.js +++ b/js/tests/interpolation_test.js @@ -12,14 +12,14 @@ const run = async ({ step, start, end, duration, waitTime = 15 }) => { t(async ({ eq }) => { // testing duration time, forbid loops - const { length } = await run({ step: 5, start: 0, end: 4, duration: 28 }) - return eq(length, 2) + const { length } = await run({ step: 5, start: 0, end: 4, duration: 50 }) + return eq(length, 1) }) t(async ({ eq }) => { // testing duration time stamp const { length } = await run({ - step: 5, + step: 2, start: 0, end: 4, duration: 10,