Skip to content

Commit 1521997

Browse files
author
hs
committed
added coveralls to dev dependencies
1 parent 5a63cc4 commit 1521997

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
],
3131
"devDependencies": {
3232
"@types/node": "^7.0.66",
33+
"coveralls": "^3.0.2",
3334
"grunt": "^1.0.3",
3435
"grunt-contrib-clean": "^1.0.0",
3536
"grunt-contrib-concat": "^1.0.1",

sharedGruntConfig.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ module.exports = (grunt, dir, dependencies, type, lib) => {
3737

3838
//------ Add Test Tasks
3939
grunt.registerTask('ospec', () => { require('child_process').spawnSync('./node_modules/.bin/ospec', {stdio: 'inherit'}); });
40-
grunt.registerTask('jest', () => { require('child_process').spawnSync('./node_modules/.bin/jest', ['-c=jest.config.json', '-i'], {stdio: 'inherit'}); });
40+
grunt.registerTask('jest', () => { require('child_process').spawnSync('./node_modules/.bin/jest',
41+
['-c=jest.config.json', '-i'],
42+
{stdio: 'inherit'}); });
4143
grunt.registerTask('test', ['clean:cov', 'jest', 'copy:coverage', 'cleanupCoverage']);
4244

4345
//------ Add Build Tasks

0 commit comments

Comments
 (0)