Skip to content

Commit

Permalink
fix: revert test updates
Browse files Browse the repository at this point in the history
Signed-off-by: Olga Nad <olga@union.ai>
  • Loading branch information
olga-union committed Sep 13, 2022
1 parent bac5f4f commit 3bc82fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ describe('useOnlyMyExecutionsFilterState', () => {

describe.each`
isFilterDisabled | initialValue | expected
${undefined} | ${undefined} | ${{ isFilterDisabled: true, onlyMyExecutionsValue: false }}
${undefined} | ${undefined} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: false }}
${false} | ${undefined} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: false }}
${true} | ${undefined} | ${{ isFilterDisabled: true, onlyMyExecutionsValue: false }}
${undefined} | ${false} | ${{ isFilterDisabled: true, onlyMyExecutionsValue: false }}
${undefined} | ${true} | ${{ isFilterDisabled: true, onlyMyExecutionsValue: true }}
${undefined} | ${false} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: false }}
${undefined} | ${true} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: true }}
${false} | ${false} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: false }}
${false} | ${true} | ${{ isFilterDisabled: false, onlyMyExecutionsValue: true }}
${true} | ${false} | ${{ isFilterDisabled: true, onlyMyExecutionsValue: false }}
Expand Down

0 comments on commit 3bc82fb

Please sign in to comment.