Skip to content

Commit

Permalink
feat(Utils): added util
Browse files Browse the repository at this point in the history
added utils folder, created structure also added test file
  • Loading branch information
shahen94 committed Nov 13, 2016
1 parent 5118b41 commit b1aca8b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/utils/test/utils.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* global expect */
import { testUtil } from '../utils';

test('[Utils]: Should be defined', () => {
expect(testUtil).toBeDefined();
});
1 change: 1 addition & 0 deletions lib/utils/utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const testUtil = 1;

0 comments on commit b1aca8b

Please sign in to comment.