Skip to content

Commit

Permalink
add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Hermann committed Jun 1, 2015
1 parent 54ca532 commit 1a39fc1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ npm-debug.log
*.js
!cli.js
!module/*.js
!tests/*.js
!tests/**/*.js
!utils/*.js
coverage
7 changes: 7 additions & 0 deletions tests/fixture/expected.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import bar from './bar';
import foo from './foo';

export {
bar,
foo
};
1 change: 1 addition & 0 deletions tests/module/bar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('bar');
1 change: 1 addition & 0 deletions tests/module/foo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('foo');
7 changes: 7 additions & 0 deletions tests/module/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import bar from './bar';
import foo from './foo';

export {
bar,
foo
};

0 comments on commit 1a39fc1

Please sign in to comment.