Browse Source

Active LTS and above support

pull/6/head
Luke Childs 8 years ago
parent
commit
f4e052e4ea
  1. 3
      .travis.yml
  2. 2
      src/index.js

3
.travis.yml

@ -1,7 +1,8 @@
language: node_js language: node_js
node_js: node_js:
- 'node' - '8'
- '6' - '6'
- '4'
script: npm test script: npm test
after_success: npm run coverage after_success: npm run coverage
notifications: notifications:

2
src/index.js

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const { JSDOM } = require('jsdom'); const JSDOM = require('jsdom').JSDOM;
// Class to return a window instance. // Class to return a window instance.
// Accepts a jsdom config object. // Accepts a jsdom config object.

Loading…
Cancel
Save