From d7f27789831cbcc73c374c3e081e7271389f2de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Fri, 25 Sep 2020 17:04:22 -0400 Subject: [PATCH] test: update fixtures fixed in #12110 --- .../systemjs/export-named-string-can-be-identifier/output.mjs | 2 +- .../test/fixtures/systemjs/export-named-string/output.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string-can-be-identifier/output.mjs b/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string-can-be-identifier/output.mjs index bed82c28410d..2d291cb07e76 100644 --- a/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string-can-be-identifier/output.mjs +++ b/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string-can-be-identifier/output.mjs @@ -4,7 +4,7 @@ System.register([], function (_export, _context) { var foo, bar; _export({ - foo: void 0, + defaultExports: void 0, bar: void 0 }); diff --git a/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string/output.mjs b/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string/output.mjs index bed82c28410d..786b6c24d89f 100644 --- a/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string/output.mjs +++ b/packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string/output.mjs @@ -4,7 +4,7 @@ System.register([], function (_export, _context) { var foo, bar; _export({ - foo: void 0, + "default exports": void 0, bar: void 0 });