Skip to content

Commit

Permalink
chore: unskip flaky test
Browse files Browse the repository at this point in the history
this unskips a test that was marked flaky. It would throw errors because
the neighboring test wasn't waiting for each test to finish running,
causing issues with the test code.
  • Loading branch information
ashtonG committed Aug 14, 2024
1 parent 91d0b67 commit d834c69
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions webui/react/src/hooks/useTypedParams.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,7 @@ describe('useTypedParams', () => {
.afterEach(() => navSpy.mockClear()),
);
});
// TODO(SKIP): skip this test case because this has been flaky on CI
// revisit here to fix the flakiness
it.skip('does not touch params that are not in the codec', async () => {
it('does not touch params that are not in the codec', async () => {
await fc.assert(
fc
.asyncProperty(
Expand Down

0 comments on commit d834c69

Please sign in to comment.