File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ before_install:
55 - npm install -g gulp
66 - npm install -g eslint
77script :
8- - " gulp eslint && gulp test"
8+ - " gulp eslint && npm test"
Original file line number Diff line number Diff line change 33module . exports = ( gulp , $ ) => {
44 gulp . task ( 'test' , ( ) => {
55 return gulp . src ( './src/js/Tags.js' , { read : false } )
6- . pipe ( $ . shell ( 'jest --coverage ' ) ) ;
6+ . pipe ( $ . shell ( 'npm test ' ) ) ;
77 } ) ;
88
99 gulp . task ( 'test-dev' , ( ) => {
Original file line number Diff line number Diff line change 11{
22 "name" : " react-tagging-input" ,
3- "version" : " 1.1.5 " ,
3+ "version" : " 1.1.6 " ,
44 "description" : " Simple tagging component" ,
55 "main" : " dist-components/Tags.js" ,
66 "license" : " MIT" ,
5555 "run-sequence" : " ^1.2.1" ,
5656 "minimist" : " ~1.2.0"
5757 },
58+ "scripts" : {
59+ "test" : " jest --coverage"
60+ },
5861 "jest" : {
5962 "testDirectoryName" : " __tests__" ,
6063 "testPathIgnorePatterns" : [
You can’t perform that action at this time.
0 commit comments