We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808b32a commit c948c81Copy full SHA for c948c81
4 files changed
test/cases/parsing/harmony-edge-cases/c.js
@@ -0,0 +1 @@
1
+export var c = "ok";
test/cases/parsing/harmony-edge-cases/d.js
+export default "ok";
test/cases/parsing/harmony-edge-cases/fake-reexport.js
@@ -0,0 +1,5 @@
+import { c } from "./c";
2
+
3
+import d from "./d";
4
5
+export { c, d };
test/cases/parsing/harmony-edge-cases/index.js
@@ -1,8 +1,11 @@
import { a } from "./a";
import x, { b } from "./b";
+import { c, d } from "./fake-reexport";
it("should be able to use exported function", function() {
6
a.should.be.eql("ok");
7
b.should.be.eql("ok");
8
x().should.be.eql("ok");
9
+ c.should.be.eql("ok");
10
+ d.should.be.eql("ok");
11
});
0 commit comments