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