-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathconfig.js
More file actions
28 lines (28 loc) · 907 Bytes
/
config.js
File metadata and controls
28 lines (28 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
enabled: true,
suiteName: "Test262",
projectSubmodulePath: "TestRunner/app/tests/vendor/test262",
bundleSubmodulePath: "vendor/test262",
generatedManifestPath: "TestRunner/app/tests/Test262/generated-manifest.json",
curatedIncludePathsPath: "TestRunner/app/tests/Test262/curated-prefixes.json",
harnessDefaults: ["assert.js", "sta.js"],
unsupportedFlags: ["module", "raw"],
unsupportedIncludes: [
"agent.js",
"detachArrayBuffer.js",
"nondeterministic.js",
"shadowrealm.js",
"timer.js",
"workerHelper.js"
],
unsupportedFeatures: [
"Array.fromAsync",
"cross-realm",
"ShadowRealm"
],
includePaths: ["built-ins/Object"],
excludePaths: ["built-ins/Array/from/elements-deleted-after.js"],
timeoutMs: 4000,
defaultLimit: 100,
expandStrictVariants: true
};