Skip to content

Commit 318e957

Browse files
Added tests.
1 parent f9923ef commit 318e957

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// @target: ES2015
2+
// @module: commonjs
3+
// @declaration: true
4+
5+
export const test = "test";
6+
7+
export function foo () {
8+
const x = { test };
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// @target: ES5
2+
// @module: commonjs
3+
// @declaration: true
4+
5+
export const test = "test";
6+
7+
export function foo () {
8+
const x = { test };
9+
}

0 commit comments

Comments
 (0)