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