From 69ccfc7cc613acbd4ce636087d7d752ef6da38fb Mon Sep 17 00:00:00 2001 From: ppetzold Date: Tue, 16 Nov 2021 19:06:26 +0100 Subject: [PATCH] fix: add another unit test case and trigger release --- src/paginate.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/paginate.spec.ts b/src/paginate.spec.ts index 3944875..565f0cc 100644 --- a/src/paginate.spec.ts +++ b/src/paginate.spec.ts @@ -473,6 +473,7 @@ describe('paginate', () => { { string: '$eq:value', tokens: [null, '$eq', 'value'] }, { string: '$eq:val:ue', tokens: [null, '$eq', 'val:ue'] }, { string: '$in:value1,value2,value3', tokens: [null, '$in', 'value1,value2,value3'] }, + { string: '$not:$in:value1:a,value2:b,value3:c', tokens: ['$not', '$in', 'value1:a,value2:b,value3:c'] }, { string: 'value', tokens: [null, '$eq', 'value'] }, { string: 'val:ue', tokens: [null, '$eq', 'val:ue'] }, { string: '$not:value', tokens: [null, '$not', 'value'] },