Skip to content

Commit

Permalink
fixed query element in test
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrpospiech committed Oct 29, 2024
1 parent 0bc096e commit c47214a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/uniforms-mui/__tests__/SelectField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('@RTL - SelectField tests', () => {
schema: z.object({ x: z.enum(['a', 'b']) }),
});

expect(screen.getByText('a')).not.toBeInTheDocument();
expect(screen.queryByText('a')).not.toBeInTheDocument();
expect(screen.queryByText('b')).not.toBeInTheDocument();
});

Expand Down

0 comments on commit c47214a

Please sign in to comment.