Added tests.

This commit is contained in:
Daniel Rosenwasser
2015-07-10 16:20:12 -07:00
parent a309b1dd67
commit 7a0b224ba5
3 changed files with 56 additions and 0 deletions
@@ -0,0 +1,20 @@
// @module: commonjs
// @filename: t1.ts
export var x = "x";
// @filename: t2.ts
export { x } from
"./t1";
// @filename: t3.ts
export { } from
"./t1";
// @filename: t4.ts
export { x as a } from
"./t1";
// @filename: t5.ts
export { x as a, } from
"./t1";
@@ -0,0 +1,16 @@
// @module: commonjs
// @filename: t1.ts
export var x = "x";
// @filename: t2.ts
export { x, from "./t1"
// @filename: t3.ts
export { from "./t1"
// @filename: t4.ts
export { x as a from "./t1"
// @filename: t5.ts
export { x as a, from "./t1"
@@ -0,0 +1,20 @@
// @module: commonjs
// @filename: t1.ts
export var x = "x";
// @filename: t2.ts
export { x, from
"./t1";
// @filename: t3.ts
export { from
"./t1";
// @filename: t4.ts
export { x as a from
"./t1";
// @filename: t5.ts
export { x as a, from
"./t1";