blob: bc345e0b4c31028391002035ebea4a1a0c5d568d (
plain)
1
2
3
4
5
6
7
|
// |reftest| skip -- support file
if (globalThis.testArray === undefined) {
globalThis.testArray = [];
}
globalThis.testArray.push("async 1");
await 0;
globalThis.testArray.push("async 2");
|