Skip to content

Commit

Permalink
coverage dir js_cov
Browse files Browse the repository at this point in the history
  • Loading branch information
jfseb committed Mar 10, 2017
1 parent f896259 commit f7aa90b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"build": "gulp",
"test": "gulp test",
"instrument": "jscoverage gen2/ gen_cov/",
"instrument": "jscoverage gen2/ js_cov/",
"testcov": "export FSD_COVERAGE=1 && nodeunit test/ test/utils --reporter=lcov | coveralls"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion test/utils/circularser.nunit.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! copyright gerd forstmann, all rights reserved */
//var debug = require('debug')('utils.nunit');
var process = require('process');
var root = (process.env.FSD_COVERAGE) ? '../../gen_cov' : '../../js';
var root = (process.env.FSD_COVERAGE) ? '../../js_cov' : '../../js';

var CircularSer = require(root + '/utils/circularser.js');

Expand Down
2 changes: 1 addition & 1 deletion test/utils/utils.nunit.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! copyright gerd forstmann, all rights reserved */
//var debug = require('debug')('utils.nunit');
var process = require('process');
var root = (process.env.FSD_COVERAGE) ? '../../gen_cov' : '../../js';
var root = (process.env.FSD_COVERAGE) ? '../../js_cov' : '../../js';

var utils = require(root + '/utils/utils.js');

Expand Down

0 comments on commit f7aa90b

Please sign in to comment.