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 '
16 lines
459 B
TypeScript
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);
|
|
});
|
|
});
|