7de192d486
* ci: add dependencies about lint tool * ci: replace eslint with prettier * ci: add husky, cz and commitlint * style: lint fix via prettier * ci: add prettier and check-types to github workflow '
18 lines
432 B
TypeScript
18 lines
432 B
TypeScript
import FlinkSQL from '../../../../src/parser/flinksql';
|
|
import { readSQL } from '../../../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);
|
|
});
|
|
});
|
|
});
|