We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f7316 commit 099f5cfCopy full SHA for 099f5cf
test/parallel/test-vm-module-dynamic-import.js
@@ -40,7 +40,7 @@ async function test() {
40
});
41
42
const result = s.runInThisContext();
43
- assert.strictEqual(foo.namespace, await result);
+ assert.strictEqual(await result, foo.namespace);
44
}
45
46
{
@@ -53,7 +53,7 @@ async function test() {
53
54
await m.link(common.mustNotCall());
55
await m.evaluate();
56
- assert.strictEqual(foo.namespace, await globalThis.fooResult);
+ assert.strictEqual(await globalThis.fooResult, foo.namespace);
57
delete globalThis.fooResult;
58
59
@@ -68,7 +68,7 @@ async function test() {
68
69
70
71
72
73
74
0 commit comments