test(ivy): fix ESM5 test code to use `var` rather than `const` (#25445)

PR Close #25445
This commit is contained in:
Pete Bacon Darwin 2019-04-28 20:48:34 +01:00 committed by Jason Aden
parent 95c5b1a7f6
commit e68490c5e4
1 changed files with 2 additions and 2 deletions

View File

@ -402,7 +402,7 @@ const IMPORTS_FILES = [
{
name: '/a.js',
contents: `
export const a = 'a';
export var a = 'a';
`,
},
{
@ -422,7 +422,7 @@ const EXPORTS_FILES = [
{
name: '/a.js',
contents: `
export const a = 'a';
export var a = 'a';
`,
},
{