blob: 12bf1116ddd8f41d43e98113478cb3b136a205ad [file] [log] [blame]
// META: title=Scheduler: scheduler should be replaceable
// META: global=window,worker
'use strict';
test(() => {
class Scheduler {
constructor() {
scheduler = this;
}
}
new Scheduler();
}, 'Tests replacing window.scheduler with a different object');