8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
import { PostgresSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new PostgresSQL();
|
|
|
|
const features = {
|
|
drops: readSQL(__dirname, 'drop.sql'),
|
|
};
|
|
|
|
describe('PgSQL Delete Syntax Tests', () => {
|
|
features.drops.forEach((drop) => {
|
|
it(drop, () => {
|
|
expect(parser.validate(drop).length).toBe(0);
|
|
});
|
|
});
|
|
});
|