Skip to content

Commit

Permalink
apply pr suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec committed Nov 16, 2023
1 parent d65ba98 commit ff7b07a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/taco/test/conditions/compound-condition.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ describe('validation', () => {
expect(() => new CompoundCondition(badObj)).toThrow();
});

it.each(['or', 'and'])(
it.each(['or', 'and', 'not'])(
'rejects empty operands for "%s" operator',
(operator) => {
const badObj = {
Expand All @@ -236,7 +236,7 @@ describe('validation', () => {
},
);

it.each(['or', 'and'])(
it.each(['or', 'and', 'not'])(
'rejects non-array operands for "%s" operator',
(operator) => {
const badObj = {
Expand Down

0 comments on commit ff7b07a

Please sign in to comment.