ecbbee32c7
* test: remove barrier files to improve unit testing performance * chore: change check-types command
17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
import PostgresSQL from 'src/parser/pgsql';
|
|
|
|
const randomText = `dhsdansdnkla ndjnsla ndnalks`;
|
|
const unCompleteSQL = `CREATE TABLE`;
|
|
|
|
describe('Postgres SQL validate invalid sql', () => {
|
|
const parser = new PostgresSQL();
|
|
|
|
test('validate random text', () => {
|
|
expect(parser.validate(randomText).length).not.toBe(0);
|
|
});
|
|
|
|
test('validate unComplete sql', () => {
|
|
expect(parser.validate(unCompleteSQL).length).not.toBe(0);
|
|
});
|
|
});
|