You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the code doesn't contain any methods, the generated coverage report won't calculate the coverage for methods.
However, the functionRate is still being calculated and returning a NaN. Thus causing the overall rate to be NaN
The text was updated successfully, but these errors were encountered:
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
When the code doesn't contain any methods, the generated coverage report won't calculate the coverage for methods.
However, the
functionRate
is still being calculated and returning aNaN
. Thus causing the overall rate to beNaN
The text was updated successfully, but these errors were encountered: