Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kajambiya committed Apr 25, 2024
1 parent 2a396a1 commit d925324
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/zscore-tests/bmi-age.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ describe('bmiForAge z-score', () => {
const weight = screen.getByRole('spinbutton', { name: /weight/i });

await user.type(height, '100');
await user.tab();
await user.type(weight, '45');
await user.tab();

Expand Down
1 change: 0 additions & 1 deletion src/zscore-tests/height-age.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ describe('heightForAge z-score', () => {
const weight = screen.getByRole('spinbutton', { name: /weight/i });

await user.type(height, '150');
await user.tab();
await user.type(weight, '45');
await user.tab();

Expand Down
1 change: 0 additions & 1 deletion src/zscore-tests/weight-height.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ describe('weightForHeight z-score', () => {
const weight = screen.getByRole('spinbutton', { name: /weight/i });

await user.type(height, '110');
await user.tab();
await user.type(weight, '45');
await user.tab();

Expand Down

0 comments on commit d925324

Please sign in to comment.