Skip to content

Commit 1886105

Browse files
committed
add test case
1 parent 1c3bef9 commit 1886105

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from "./b";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from "./c";
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default "ok";
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import value from "./a";
2+
3+
it("should have the correct values", function() {
4+
value.should.be.eql("ok");
5+
});
6+
7+
8+
// prevent scope hoisting of b
9+
require("./b");

0 commit comments

Comments
 (0)