Skip to content

Commit

Permalink
test: update case
Browse files Browse the repository at this point in the history
  • Loading branch information
Wxh16144 committed Apr 13, 2023
1 parent ddb6a72 commit b83ece4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/picker.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ describe('Picker.Basic', () => {
const column = wrapper.find('.rc-picker-time-panel-column').at(index);
const cells = column.find('.rc-picker-time-panel-cell-inner');
cells.forEach((cell) => {
expect(Number.isInteger(Number(cell.text())));
expect(Number.isInteger(Number(cell.text()))).toBeTruthy();
});
});
});
Expand Down

0 comments on commit b83ece4

Please sign in to comment.