Skip to content

Commit 09a7f5c

Browse files
committed
Fix lint
1 parent 24a294b commit 09a7f5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bootstrap-unexpected-markdown.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*global unexpected:true, expect:true, jsdom:true, createElement:true, window:true, document:true*/
1+
/*global unexpected:true, expect:true, jsdom:true, createElement:true*/
22
/* eslint no-unused-vars: "off" */
33

44
if (typeof expect === 'undefined') {
@@ -20,5 +20,6 @@ createElement = function createElement(html) {
2020
return root.firstChild;
2121
};
2222

23+
/* eslint-disable no-global-assign */
2324
window = new jsdom.JSDOM().window;
2425
document = window.document;

test/index.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*global expect, jsdom, describe, it, beforeEach, afterEach, DOMParser:true*/
1+
/*global expect, jsdom, DOMParser:true*/
22
const isIe =
33
window.navigator &&
44
/Windows/.test(window.navigator.userAgent) &&

test/jsdom-compatibility.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/*global describe, it*/
21
const unexpected = require('unexpected');
32
const unexpectedDom = require('../src/index');
43
const jsdom = require('jsdom');

0 commit comments

Comments
 (0)