★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/5ec550de02Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
test: Change from var to const
PR-URL: #30431
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
Sahtair authored and BridgeAR committed Nov 19, 2019
1 parent 13bac0a commit 5ec550de02e189f899712bee358f5571ed43aaeb
Showing with 2 additions and 2 deletions.
  1. +2 −2 test/parallel/test-vm-module-link.js
@@ -97,11 +97,11 @@ async function circular2() {
`,
'./a.mjs': `
export * from './b.mjs';
export var fromA;
export let fromA;
`,
'./b.mjs': `
export * from './a.mjs';
export var fromB;
export let fromB;
`
};
const moduleMap = new Map();

0 comments on commit 5ec550d

Please sign in to comment.