We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8931049 commit c47b2c5Copy full SHA for c47b2c5
tests/node/test.js
@@ -1,6 +1,7 @@
1
/* eslint-env mocha */
2
'use strict';
3
4
+// require('')
5
const path = require('path');
6
const assert = require('chai').assert;
7
const jsdom = require('jsdom');
@@ -11,6 +12,8 @@ suite('node acceptance tests', function () {
11
12
global.navigator = _window.navigator;
13
global.document = _window.document;
14
global.screen = {};
15
+ global.HTMLElement = _window.Element;
16
+ global.window.customElements = {define: function () {}};
17
});
18
19
teardown(function () {
0 commit comments