Signed-off-by: Filip Skokan <panva.ip@gmail.com> PR-URL: https://github.com/nodejs/node/pull/62635 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
14 lines
310 B
JavaScript
14 lines
310 B
JavaScript
'use strict';
|
|
|
|
const { skip } = require('../common');
|
|
|
|
if (process.config.variables.node_shared_ada) {
|
|
skip('Different versions of Ada affect the WPT tests');
|
|
}
|
|
|
|
const { WPTRunner } = require('../common/wpt');
|
|
|
|
const runner = new WPTRunner('url');
|
|
|
|
runner.pretendGlobalThisAs('Window');
|
|
runner.runJsTests();
|