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 '
17 lines
449 B
TypeScript
17 lines
449 B
TypeScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import FlinkSQL from '../../../../src/parser/flinksql';
|
|
|
|
// 注释 sql 不做切割
|
|
const features = {
|
|
comments: fs.readFileSync(path.join(__dirname, 'fixtures', 'comment.sql'), 'utf-8'),
|
|
};
|
|
|
|
describe('FlinkSQL Comment Syntax Tests', () => {
|
|
const parser = new FlinkSQL();
|
|
|
|
test('Comment SQL Statement', () => {
|
|
expect(parser.validate(features.comments).length).toBe(0);
|
|
});
|
|
});
|