Rename test fixtures using module syntax to .mjs files.
This commit is contained in:
9
packages/babel-plugin-transform-runtime/test/fixtures/runtime/full/input.mjs
vendored
Normal file
9
packages/babel-plugin-transform-runtime/test/fixtures/runtime/full/input.mjs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import foo, * as bar from "someModule";
|
||||
|
||||
export const myWord = Symbol("abc");
|
||||
export function* giveWord () {
|
||||
yield myWord;
|
||||
}
|
||||
|
||||
foo;
|
||||
bar;
|
||||
Reference in New Issue
Block a user