lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/choreStatement.test.ts
Hayden ecbbee32c7
test: remove barrier files to improve unit testing performance (#249)
* test: remove barrier files to improve unit testing performance

* chore: change check-types command
2024-01-19 21:10:00 +08:00

18 lines
416 B
TypeScript

import FlinkSQL from 'src/parser/flinksql';
import { readSQL } from 'test/helper';
// 综合测试的 sql 不做切割
const features = {
chores: readSQL(__dirname, 'chore.sql'),
};
describe('FlinkSQL Chore Syntax Tests', () => {
const parser = new FlinkSQL();
features.chores.forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});