1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

remove testing from watch process

This commit is contained in:
Tim Daubenschütz 2015-06-08 13:55:55 +02:00
parent 6d337890d0
commit 1b52864f3e
2 changed files with 6 additions and 5 deletions

View File

@ -45,7 +45,7 @@ gulp.task('build', function() {
bundle(false); bundle(false);
}); });
gulp.task('serve', ['browser-sync', 'jest:watch', 'lint:watch', 'sass', 'sass:watch', 'copy'], function() { gulp.task('serve', ['browser-sync', 'lint:watch', 'sass', 'sass:watch', 'copy'], function() {
bundle(true); bundle(true);
}); });

View File

@ -9,7 +9,6 @@ export const FormMixin = {
getInitialState() { getInitialState() {
return { return {
submitted: false, submitted: false,
status: null,
errors: [] errors: []
}; };
}, },
@ -23,12 +22,14 @@ export const FormMixin = {
.then(() => { this.props.handleSuccess(); }) .then(() => { this.props.handleSuccess(); })
.catch(this.handleError); .catch(this.handleError);
}, },
clearErrors(){ clearErrors(){
for (var ref in this.refs){ for (var ref in this.refs){
this.refs[ref].clearAlerts(); this.refs[ref].clearAlerts();
} }
this.setState({errors:[]}); this.setState({errors: []});
}, },
handleError(err){ handleError(err){
if (err.json) { if (err.json) {
for (var input in err.json.errors){ for (var input in err.json.errors){
@ -39,8 +40,8 @@ export const FormMixin = {
} }
} }
} }
else{ else {
this.setState({errors: ['Something went wrong, please try again later"']}); this.setState({errors: ['Something went wrong, please try again later']});
} }
this.setState({submitted: false}); this.setState({submitted: false});
}, },