fix unit tests for network handling

This commit is contained in:
John Mitchell
2019-04-10 11:16:20 -04:00
parent ad0e409448
commit 344713f938
26 changed files with 499 additions and 344 deletions

View File

@@ -28,6 +28,7 @@ class OrganizationForm extends Component {
this.state = {
instanceGroups: [],
initialInstanceGroups: [],
formIsValid: true,
};
}
@@ -174,4 +175,5 @@ OrganizationForm.contextTypes = {
custom_virtualenvs: PropTypes.arrayOf(PropTypes.string)
};
export { OrganizationForm as _OrganizationForm };
export default withNetwork(withRouter(OrganizationForm));