Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
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));
|
|
}
|
|
});
|
|
}
|
|
});
|