lava-oushudb-dt-sql-parser/test/parser/pgsql/syntax/createStatement.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
389 B
TypeScript

import PostgresSQL from 'src/parser/pgsql';
import { readSQL } from 'test/helper';
const parser = new PostgresSQL();
const features = {
creates: readSQL(__dirname, 'create.sql'),
};
describe('PgSQL Create Syntax Tests', () => {
features.creates.forEach((create) => {
it(create, () => {
expect(parser.validate(create).length).toBe(0);
});
});
});