diff --git a/test/fixtures/transformation/optional-self-contained/full/actual.js b/test/fixtures/transformation/optional-self-contained/full/actual.js index 3e8b1bcdbc..544c01be3d 100644 --- a/test/fixtures/transformation/optional-self-contained/full/actual.js +++ b/test/fixtures/transformation/optional-self-contained/full/actual.js @@ -1,6 +1,6 @@ import foo, * as bar from "someModule"; export const myWord = Symbol("abc"); -export function* giveWord () { +function* giveWord () { yield myWord; } diff --git a/test/fixtures/transformation/optional-self-contained/full/expected.js b/test/fixtures/transformation/optional-self-contained/full/expected.js index cbd7e48fbf..5c31f034a6 100644 --- a/test/fixtures/transformation/optional-self-contained/full/expected.js +++ b/test/fixtures/transformation/optional-self-contained/full/expected.js @@ -19,7 +19,6 @@ var giveWord = _regeneratorRuntime.mark(function giveWord() { }, giveWord, this); }); -exports.giveWord = giveWord; var foo = _to5Runtime.interopRequire(require("someModule")); var bar = _to5Runtime.interopRequireWildcard(require("someModule"));