Skip to content

Commit

Permalink
fix(test): add dummy test
Browse files Browse the repository at this point in the history
  • Loading branch information
donysukardi committed May 4, 2018
1 parent 13e31a1 commit f9295fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"scripts": {
"commit": "git-cz",
"test": "jest",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
Expand All @@ -43,5 +44,9 @@
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"testPathIgnorePatterns":
["/node_modules/", "<rootDir>/examples/"]
}
}
5 changes: 5 additions & 0 deletions src/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe('dummy test', () => {
it('works', () => {
expect(true).toBe(true);
});
});

0 comments on commit f9295fb

Please sign in to comment.