From a08e1968865190d133300029f86edc304a4e2cf2 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 25 Jan 2023 09:44:38 +0200 Subject: [PATCH] fix(race_test.js): ensure Promise.race is available for test.mjs race_test.js set it to undefined this commit comments out the offending line @eslopfer is working on a fix on branch: DEV-4309-race-bring-issue-from-public --- js/tests/race_test.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/tests/race_test.js b/js/tests/race_test.js index d971a9c7..5834c89f 100644 --- a/js/tests/race_test.js +++ b/js/tests/race_test.js @@ -1,4 +1,6 @@ -Promise.race = undefined +// @davhojt commented out Promise.race as a quick fix. +// @eslopfer is working on a fix on a fix on branch: DEV-4309-race-bring-issue-from-public +// Promise.race = undefined // /*/ // ⚡ export const tests = [] const t = (f) => tests.push(f)