Rename test fixtures using module syntax to .mjs files.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export function a() {
|
||||
alert("a");
|
||||
c++;
|
||||
}
|
||||
|
||||
export var c = 5;
|
||||
|
||||
function b() {
|
||||
a();
|
||||
}
|
||||
|
||||
b();
|
||||
Reference in New Issue
Block a user