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
This commit is contained in:
davhojt 2023-01-25 09:44:38 +02:00
parent 84c56a4741
commit a08e196886
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
1 changed files with 3 additions and 1 deletions

View File

@ -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)