Skip to content

Commit

Permalink
Prefix node core modules
Browse files Browse the repository at this point in the history
As is new best-practice
  • Loading branch information
PowerKiKi committed Jul 27, 2023
1 parent eb89b14 commit bbe33e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function (config) {
clearContext: false, // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, '../coverage'),
dir: require('node:path').join(__dirname, '../coverage'),
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true,
},
Expand Down
2 changes: 1 addition & 1 deletion projects/fab-speed-dial/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function (config) {
clearContext: false, // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, '../../coverage/fab-speed-dial'),
dir: require('node:path').join(__dirname, '../../coverage/fab-speed-dial'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true,
},
Expand Down

0 comments on commit bbe33e0

Please sign in to comment.