Skip to content

Commit

Permalink
Commaless import/export tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjohnson committed Oct 13, 2017
1 parent b49382f commit 2680b70
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/fixtures/commaless/import-export/actual.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import {
a
b as c
} from 'somewhere'

export {
d as default
e
}
3 changes: 3 additions & 0 deletions test/fixtures/commaless/import-export/expected.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { a, b as c } from 'somewhere';

export { d as default, e };

0 comments on commit 2680b70

Please sign in to comment.