n8n/packages/@n8n/codemirror-lang/test/expressions/expressions.test.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
621 B
TypeScript
Raw Normal View History

import { fileTests as runTestFile } from '@lezer/generator/dist/test';
import fs from 'fs';
import path from 'path';
import { n8nLanguage } from '../../src/expressions/index';
describe('expressions language', () => {
const CASES_DIR = __dirname;
for (const testFile of fs.readdirSync(CASES_DIR)) {
if (!/\.txt$/.test(testFile)) continue;
const testFileName = /^[^\.]*/.exec(testFile)![0];
describe(testFileName, () => {
for (const { name, run } of runTestFile(
fs.readFileSync(path.join(CASES_DIR, testFile), 'utf8'),
testFile,
)) {
it(name, () => run(n8nLanguage.parser));
}
});
}
});