Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
serut committed Feb 7, 2019
1 parent bb780dd commit 3eb5693
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Package.onTest(function (api) {
api.use(['lmieulet:meteor-coverage']);
api.use(['meteortesting:mocha']);
// New meteor 12/2018 unknown issue
api.addFiles(['client/methods.e2e.tests.js', 'client/methods.unit.tests.js', 'client/client.instrumentation.tests.js'], 'client')
api.addFiles(['client/methods.e2e.tests.js', 'client/methods.unit.tests.js', 'client/client.instrumentation.tests.js'], 'client');
api.mainModule('server/tests.js', 'server');
api.mainModule('client/main.tests.js', 'client');

Expand Down
4 changes: 2 additions & 2 deletions server/services/coverage-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export default CoverageData = {
if (child && child.fileCoverage &&
child.fileCoverage.data && child.fileCoverage.data.path &&
child.fileCoverage.data.path.indexOf(Conf.COVERAGE_APP_FOLDER)) {
// add the folder in the path if not present
child.fileCoverage.data.path = path.join(Conf.COVERAGE_APP_FOLDER, child.fileCoverage.data.path)
// add the folder in the path if not present
child.fileCoverage.data.path = path.join(Conf.COVERAGE_APP_FOLDER, child.fileCoverage.data.path);
}
}
}
Expand Down

0 comments on commit 3eb5693

Please sign in to comment.