1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| const fs = require("fs")
| const path = require("path")
| const run = require("test262-parser-runner")
| const parse = require("..").parse
|
| const unsupportedFeatures = [
| "BigInt",
| "class-fields",
| "class-fields-private",
| "class-fields-public",
| "numeric-separator-literal"
| ];
|
| run(
| (content, {sourceType}) => parse(content, {sourceType, ecmaVersion: 10}),
| {
| testsDirectory: path.dirname(require.resolve("test262/package.json")),
| skip: test => (test.attrs.features && unsupportedFeatures.some(f => test.attrs.features.includes(f))),
| whitelist: fs.readFileSync("./bin/test262.whitelist", "utf8").split("\n").filter(v => v)
| }
| )
|
|