mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-23 19:36:02 +00:00
filterparser tests added to test run
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"start": "tsc --watch",
|
||||
"test": "jest"
|
||||
"test": "jest",
|
||||
"test:ci": "jest --json --outputFile=result.json --testLocationInResults"
|
||||
},
|
||||
"files": [
|
||||
"lib"
|
||||
|
||||
@@ -3,5 +3,9 @@ import { parseFilter } from './parseFilter';
|
||||
test('parse string', () => {
|
||||
const ast = parseFilter('"123"', 'string');
|
||||
console.log(JSON.stringify(ast));
|
||||
expect(ast).toBe(3);
|
||||
expect(ast).toEqual({
|
||||
conditionType: 'like',
|
||||
left: { exprType: 'placeholder' },
|
||||
right: { exprType: 'value', value: '%123%' },
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user