Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d7f2778

Browse files
committed
test: update fixtures fixed in #12110
1 parent a47a050 commit d7f2778

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs

packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string-can-be-identifier/output.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ System.register([], function (_export, _context) {
44
var foo, bar;
55

66
_export({
7-
foo: void 0,
7+
defaultExports: void 0,
88
bar: void 0
99
});
1010

packages/babel-plugin-transform-modules-systemjs/test/fixtures/systemjs/export-named-string/output.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ System.register([], function (_export, _context) {
44
var foo, bar;
55

66
_export({
7-
foo: void 0,
7+
"default exports": void 0,
88
bar: void 0
99
});
1010

0 commit comments

Comments
 (0)