ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import PostgresSQL from 'src/parser/pgsql';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const parser = new PostgresSQL();
|
|
|
|
const features = {
|
|
alters: readSQL(__dirname, 'alter.sql'),
|
|
};
|
|
|
|
describe('PgSQL Create Syntax Tests', () => {
|
|
features.alters.forEach((alters) => {
|
|
it(alters, () => {
|
|
expect(parser.validate(alters).length).toBe(0);
|
|
});
|
|
});
|
|
});
|