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