* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
		
			
				
	
	
		
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { HiveSQL } from '../../../filters';
 | 
						|
import { readSQL } from '../../../helper';
 | 
						|
 | 
						|
const parser = new HiveSQL();
 | 
						|
 | 
						|
const features = {
 | 
						|
    shows: readSQL(__dirname, 'show.sql'),
 | 
						|
};
 | 
						|
 | 
						|
describe('HiveSQL Show Syntax Tests', () => {
 | 
						|
    features.shows.forEach((show) => {
 | 
						|
        it(show, () => {
 | 
						|
            expect(parser.validate(show).length).toBe(0);
 | 
						|
        });
 | 
						|
    });
 | 
						|
});
 |