lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/comprehensive.test.ts
Hayden 7de192d486
chroe: devops (#180)
* 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

'
2023-10-13 11:16:36 +08:00

16 lines
459 B
TypeScript

import fs from 'fs';
import path from 'path';
import FlinkSQL from '../../../../src/parser/flinksql';
// 综合测试的 sql 不做切割
const features = {
templates: fs.readFileSync(path.join(__dirname, 'fixtures', 'templates.sql'), 'utf-8'),
};
describe('FlinkSQL Comprehensive Tests', () => {
const parser = new FlinkSQL();
test('Stream SQL templates', () => {
expect(parser.validate(features.templates).length).toBe(0);
});
});