You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
523 B
17 lines
523 B
import {parser} from "../dist/index.js" |
|
import {fileTests} from "@lezer/generator/dist/test" |
|
|
|
import * as fs from "fs" |
|
import * as path from "path" |
|
import {fileURLToPath} from "url" |
|
let caseDir = path.dirname(fileURLToPath(import.meta.url)) |
|
|
|
for (let file of fs.readdirSync(caseDir)) { |
|
if (!/\.txt$/.test(file)) continue |
|
|
|
let name = /^[^\.]*/.exec(file)[0] |
|
describe(name, () => { |
|
for (let {name, run} of fileTests(fs.readFileSync(path.join(caseDir, file), "utf8"), file)) |
|
it(name, () => run(parser)) |
|
}) |
|
}
|
|
|