mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08:00
23 lines
621 B
TypeScript
23 lines
621 B
TypeScript
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));
|
|
}
|
|
});
|
|
}
|
|
});
|