fixing index table test (#29357)

This commit is contained in:
Bill McConaghy 2019-01-25 12:17:09 -05:00 committed by GitHub
parent c6f0595262
commit 51e0a807ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,12 +24,12 @@ jest.mock('react-ace', () => {
editor = {
textInput: {
getElement() {
return { addEventListener() {} };
return { removeAttribute() {}, addEventListener() {} };
}
}
};
render() {
return null;
return <div />;
}
};
});