Skip to content

Commit

Permalink
Make ESLint happy again...
Browse files Browse the repository at this point in the history
  • Loading branch information
impinball committed Oct 26, 2016
1 parent 29a9bca commit 5a5c051
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Expand Up @@ -8,3 +8,4 @@

# The bundle is likely to fail, anyways.
/thallium.js
/thallium-migrate.js
4 changes: 0 additions & 4 deletions mocha/pass-fail/basic.js
Expand Up @@ -2,10 +2,6 @@

var fail = require("../../assert").fail

function fail() {
t.fail("fail")
}

describe("core (basic)", function () {
it("has `base()`", function () {})
it("has `test()`", function () {})
Expand Down
3 changes: 2 additions & 1 deletion r/dom.js
Expand Up @@ -227,7 +227,8 @@ function showTestResult(_, report) {
className += " " + R.speed(report)
var duration = document.createElement("span")

duration.appendChild(document.createTextNode(R.formatTime(report.duration)))
duration.appendChild(document.createTextNode(
R.formatTime(report.duration)))
inner.appendChild(duration)
}

Expand Down

0 comments on commit 5a5c051

Please sign in to comment.