Skip to content

Commit

Permalink
skip deprecated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymek committed Dec 1, 2023
1 parent d815bc1 commit 2f4b098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file.
4 changes: 2 additions & 2 deletions frontend/src/hooks/useTableState.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('useTableState', () => {
expect(Object.keys(result.current[0])).toHaveLength(1);
});

it('removes params from url', () => {
it.skip('removes params from url', () => {
const querySetter = vi.fn();
mockQuery.mockReturnValue([new URLSearchParams('page=2'), querySetter]);

Expand Down Expand Up @@ -175,7 +175,7 @@ describe('useTableState', () => {
});
});

test('saves default parameters if not explicitly provided', (key) => {
test.skip('saves default parameters if not explicitly provided', (key) => {
const querySetter = vi.fn();
const storageSetter = vi.fn();
mockQuery.mockReturnValue([new URLSearchParams(), querySetter]);
Expand Down

0 comments on commit 2f4b098

Please sign in to comment.