Skip to content

Commit

Permalink
Merge branch 'main' into fix-miscalculated-preview-charge-part-2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cruikshanks authored Dec 23, 2024
2 parents 09a5491 + 40f4bf1 commit 1ac13e7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .labrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@
module.exports = {
verbose: true,
coverage: true,
'coverage-exclude': ['db/seeds'],
'coverage-exclude': [
'db/seeds',
'app/controllers/check.controller.js', // Test helper endpoints
// Most plugins are not tested directly (but are inherently tested by other tests loading the web server)
// The plugins below do no get 100% coverage, this comment is here to highlight this.
'app/plugins/airbrake.plugin.js',
'app/plugins/auth.plugin.js',
'app/plugins/hapi-pino.plugin.js',
'app/plugins/stop.plugin.js',
'app/plugins/views.plugin.js'
],
// lcov reporter required for SonarQube
reporter: ['console', 'html', 'lcov'],
output: ['stdout', 'coverage/coverage.html', 'coverage/lcov.info'],
Expand Down

0 comments on commit 1ac13e7

Please sign in to comment.