8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { HiveSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new HiveSQL();
|
|
|
|
const features = {
|
|
manageRoles: readSQL(__dirname, 'authorization.sql'),
|
|
};
|
|
|
|
describe('HiveSQL Related To Authorization Tests', () => {
|
|
features.manageRoles.forEach((manageRole) => {
|
|
it(manageRole, () => {
|
|
expect(parser.validate(manageRole).length).toBe(0);
|
|
});
|
|
});
|
|
});
|