fixing index table test (#29357) (#29364)

This commit is contained in:
Bill McConaghy 2019-01-25 12:18:07 -05:00 committed by GitHub
parent 9cd9b9ebfc
commit 70fee59157
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 />;
}
};
});