mirror of https://github.com/tc39/test262.git
Rename support files to end in _FIXTURE.js (#4368)
This commit is contained in:
parent
1d7a2938a2
commit
7f12305f59
|
@ -1,4 +1,6 @@
|
|||
// |reftest| skip -- support file
|
||||
// Copyright (C) 2024 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
// |reftest| skip -- support file
|
||||
import "./bug1693261-async.mjs";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("c1");
|
|
@ -0,0 +1,8 @@
|
|||
// |reftest| skip -- support file
|
||||
// Copyright (C) 2024 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
import "./bug1693261-async_FIXTURE.js";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("c1");
|
|
@ -1,6 +0,0 @@
|
|||
// |reftest| skip -- support file
|
||||
import "./bug1693261-async.mjs";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("c2");
|
|
@ -0,0 +1,8 @@
|
|||
// |reftest| skip -- support file
|
||||
// Copyright (C) 2024 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
import "./bug1693261-async_FIXTURE.js";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("c2");
|
|
@ -1,6 +0,0 @@
|
|||
// |reftest| skip -- support file
|
||||
import "./bug1693261-c1.mjs";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("x");
|
|
@ -0,0 +1,8 @@
|
|||
// |reftest| skip -- support file
|
||||
// Copyright (C) 2024 Mozilla Corporation. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
import "./bug1693261-c1_FIXTURE.js";
|
||||
if (globalThis.testArray === undefined) {
|
||||
globalThis.testArray = [];
|
||||
}
|
||||
globalThis.testArray.push("x");
|
Loading…
Reference in New Issue