Web: Components: Fixed test warning for ProgressBar

This commit is contained in:
Ilya Oleshko 2020-08-11 11:04:08 +03:00
parent 38b781f5fc
commit 0a17c876a6

View File

@ -4,7 +4,7 @@ import ProgressBar from ".";
describe("<Box />", () => {
it("renders without error", () => {
const wrapper = mount(<ProgressBar value={50} maxValue={100} />);
const wrapper = mount(<ProgressBar percent={50} value={50} maxValue={100} />);
expect(wrapper).toExist();
});