ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
17 lines
437 B
TypeScript
17 lines
437 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);
|
|
});
|
|
});
|