We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5792208 commit 5bffcf6Copy full SHA for 5bffcf6
test/wpt/status/html/webappapis/timers.json
@@ -0,0 +1 @@
1
+{}
test/wpt/test-timers.js
@@ -0,0 +1,18 @@
+'use strict';
2
+
3
+// Flags: --expose-internals
4
5
+require('../common');
6
+const { WPTRunner } = require('../common/wpt');
7
8
+const runner = new WPTRunner('html/webappapis/timers');
9
10
+// Copy global descriptors from the global object
11
+runner.copyGlobalsFromObject(global, [
12
+ 'setInterval',
13
+ 'clearInterval',
14
+ 'setTimeout',
15
+ 'clearTimeout'
16
+]);
17
18
+runner.runJsTests();
0 commit comments