Skip to content
Snippets Groups Projects
Commit d92d3560 authored by Leo Balter's avatar Leo Balter Committed by Rick Waldron
Browse files

missing fixup

parent 292fd0c9
No related branches found
No related tags found
No related merge requests found
......@@ -28,12 +28,12 @@ if (typeof global.evaluated === 'undefined') {
global.evaluated++;
Promise.all([
import('./eval-self-once.js'),
import('./eval-self-once.js'),
import('./eval-self-once-module.js'),
import('./eval-self-once-module.js'),
]).then(async () => {
// Use await to serialize imports
await import('./eval-self-once.js');
await import('./eval-self-once.js');
await import('./eval-self-once-module.js');
await import('./eval-self-once-module.js');
assert.sameValue(global.evaluated, 1, 'global property was defined and incremented only once');
}).then($DONE, $DONE);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment