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