Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor cleanup #683

Merged
merged 3 commits into from
Mar 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/coverage.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
const Fs = require('fs');
const Path = require('path');
const Espree = require('espree');
const SourceMapSupport = require('source-map-support');
const SourceMapConsumer = require('source-map').SourceMapConsumer;
const SourceMapSupport = require('source-map-support');
const Transform = require('./transform');


Expand Down Expand Up @@ -345,7 +345,7 @@ internals.instrument = function (filename) {
if ((!nodesByLine[i] || !nodesByLine[i].find((type) => type !== 'Line' && type !== 'Block')) && !record.commentedLines[i]) {
record.commentedLines[i] = true;

// Acorm remove comment delimiters, so start and end lines must never be considered blank if they content is
// Acorn removes comment delimiters, so start and end lines must never be considered blank if they content is
if (i === start || i === end || !blank.test(internals.sources[filename][i - 1])) {
commented++;
}
Expand Down
4 changes: 4 additions & 0 deletions lib/reporters/html/partials/css.html
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,10 @@
display: inherit;
}

#tests table .show {
display: table-row;
}

[data-tooltip] {
position: relative;
}
Expand Down
1 change: 1 addition & 0 deletions lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// Load modules

// 'cluster' loaded below in internals.loadLazyObjects()
const Domain = require('domain');
const Items = require('items');
const Hoek = require('hoek');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"bossy": "3.x.x",
"diff": "3.x.x",
"eslint": "3.16.x",
"eslint": "3.17.x",
"eslint-config-hapi": "10.x.x",
"eslint-plugin-hapi": "4.x.x",
"espree": "3.x.x",
Expand All @@ -31,7 +31,7 @@
"devDependencies": {
"code": "4.x.x",
"cpr": "2.0.x",
"eslint-plugin-markdown": "1.0.0-beta.3",
"eslint-plugin-markdown": "1.0.0-beta.4",
"lab-event-reporter": "1.x.x",
"rimraf": "2.6.x"
},
Expand Down