Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Weiko committed Sep 11, 2024
1 parent 145878e commit 497d279
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ describe('GraphqlQueryFilterOperatorParser', () => {
it('should parse is operator with non-NULL value correctly', () => {
const result = parser.parseOperator({ is: 'NOT_NULL' }, false);

expect(result).toBe('NOT_NULL');
expect(result).toBeInstanceOf(FindOperator);
expect(result).toEqual(Not(IsNull()));
});

it('should parse like operator correctly', () => {
Expand Down

0 comments on commit 497d279

Please sign in to comment.