Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit a1a7e56

Browse files
committed
export star 2
1 parent 64ae3d0 commit a1a7e56

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

test/syntax/export-star2.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './export-star';

test/test.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,15 @@ function runTests() {
327327
});
328328
});
329329

330+
test('Export Star 2', function(assert) {
331+
System['import']('syntax/export-star2').then(function(m) {
332+
assert(
333+
[m.foo, 'foo'],
334+
[m.bar, 'bar']
335+
);
336+
});
337+
});
338+
330339
test('Export Star', function(assert) {
331340
System['import']('syntax/export-star').then(function(m) {
332341
assert(

0 commit comments

Comments
 (0)