Web: Components: Row: Removed unused test

This commit is contained in:
Ilya Oleshko 2021-04-02 18:05:26 +03:00
parent 5733a4d9ab
commit 3ae0a4703f

View File

@ -87,13 +87,4 @@ describe("<Row />", () => {
expect(wrapper.getDOMNode().style).toHaveProperty("color", "red");
});
it("componentWillUnmount() props lifecycle test", () => {
const wrapper = shallow(<Row {...baseProps} />);
const instance = wrapper.instance();
instance.componentWillUnmount();
expect(wrapper).toExist(false);
});
});