7de192d486
* ci: add dependencies about lint tool * ci: replace eslint with prettier * ci: add husky, cz and commitlint * style: lint fix via prettier * ci: add prettier and check-types to github workflow '
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
import TrinoSQL from '../../../../src/parser/trinosql';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const features = {
|
|
prepare: readSQL(__dirname, 'prepare.sql'),
|
|
};
|
|
|
|
describe('TrinoSQL Prepare Statements Syntax Tests', () => {
|
|
const parser = new TrinoSQL();
|
|
// prepare statements
|
|
features.prepare.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|