lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/commentStatement.test.ts
Hayden ecbbee32c7
test: remove barrier files to improve unit testing performance (#249)
* test: remove barrier files to improve unit testing performance

* chore: change check-types command
2024-01-19 21:10:00 +08:00

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);
});
});