From 4b832fcd676d625b580e82b110e3a9aa95b9cded Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 31 Mar 2022 10:47:02 +0200 Subject: [PATCH] test: remove hack for `atob` and `btoa` WPT tests --- test/wpt/test-atob.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/wpt/test-atob.js b/test/wpt/test-atob.js index 8dc9c20303a7dc..b227ae4d20e105 100644 --- a/test/wpt/test-atob.js +++ b/test/wpt/test-atob.js @@ -5,13 +5,4 @@ const { WPTRunner } = require('../common/wpt'); const runner = new WPTRunner('html/webappapis/atob'); -// Needed to access to DOMException. -runner.setFlags(['--expose-internals']); - -// Set a script that will be executed in the worker before running the tests. -runner.setInitScript(` - const { internalBinding } = require('internal/test/binding'); - const { atob, btoa } = require('buffer'); -`); - runner.runJsTests();