We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e7693e commit 1da9dd4Copy full SHA for 1da9dd4
.travis.yml
@@ -10,6 +10,7 @@ before_script:
10
script:
11
- npm run all
12
after_success:
13
+ - npx codecov
14
- npx babel-node ./bin/sync-algolia.js
15
deploy:
16
provider: script
package.json
@@ -21,6 +21,11 @@
21
"path": "cz-conventional-changelog"
22
}
23
},
24
+ "jest": {
25
+ "collectCoverageFrom": [
26
+ "src/**/*.js"
27
+ ]
28
+ },
29
"dependencies": {
30
"classnames": "^2.2.5"
31
src/__tests__/index.test.js
@@ -1,5 +1,5 @@
1
/* eslint-env jest */
2
-import feather from '../..';
+import feather from '../index';
3
4
test('has correct properties', () => {
5
expect(feather).toHaveProperty('icons');
0 commit comments