mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
22 lines
620 B
TypeScript
22 lines
620 B
TypeScript
|
import fs from 'fs';
|
||
|
import path from 'path';
|
||
|
import { fileTests as runTestFile } from '@lezer/generator/dist/test';
|
||
|
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));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|