Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions test/wpt/status/hr-time.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
'use strict';

const os = require('node:os');

const isMacOS15X64 =
os.platform() === 'darwin' &&
process.arch === 'x64' &&
os.release().startsWith('24.');

module.exports = {
...(isMacOS15X64 ? {
'basic.any.js': {
fail: {
note: 'Flaky on macos15-x64: Date.now() can shift relative to monotonic performance.now()',
flaky: [
'High resolution time has approximately the right relative magnitude',
],
},
},
} : {}),

'idlharness.any.js': {
fail: {
expected: [
'Window interface: attribute performance',
],
},
},

'idlharness-shadowrealm.window.js': {
skip: 'ShadowRealm support is not enabled',
},

'window-worker-timeOrigin.window.js': {
skip: 'depends on URL.createObjectURL(blob)',
},
};
15 changes: 0 additions & 15 deletions test/wpt/status/hr-time.json

This file was deleted.

Loading