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

Commit 828cc9e

Browse files
committed
export * override test
1 parent a1a7e56 commit 828cc9e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

test/syntax/export-star2.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export * from './export-star';
1+
export * from './export-star';
2+
export function foo() {
3+
4+
}

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function runTests() {
330330
test('Export Star 2', function(assert) {
331331
System['import']('syntax/export-star2').then(function(m) {
332332
assert(
333-
[m.foo, 'foo'],
333+
[typeof m.foo, 'function'],
334334
[m.bar, 'bar']
335335
);
336336
});

0 commit comments

Comments
 (0)