Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-gilliotte committed Jul 28, 2023
1 parent f6890f4 commit 5d9a614
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ describe('FilterOperatorBuilder > getSupportedOperators', () => {
['Dateonly', ['Equal', 'NotEqual', 'Present', 'In', 'NotIn', 'GreaterThan', 'LessThan']],
['Enum', ['Equal', 'NotEqual', 'Present', 'In', 'NotIn']],
['Number', ['Equal', 'NotEqual', 'Present', 'In', 'NotIn', 'GreaterThan', 'LessThan']],
['String', ['Equal', 'NotEqual', 'Present', 'In', 'NotIn', 'Match', 'NotContains']],
['Uuid', ['Equal', 'NotEqual', 'Present', 'Match', 'NotContains']],
[
'String',
['Equal', 'NotEqual', 'Present', 'In', 'NotIn', 'Match', 'NotContains', 'NotIContains'],
],
['Uuid', ['Equal', 'NotEqual', 'Present', 'Match', 'NotContains', 'NotIContains']],
['Json', ['Equal', 'NotEqual', 'Present']],
['Point', []],
['Timeonly', []],
Expand Down

0 comments on commit 5d9a614

Please sign in to comment.