Skip to content
Extraits de code Groupes Projets
Valider 8b807192 rédigé par Jonne Haß's avatar Jonne Haß
Parcourir les fichiers

Make toggle aspect call synchronous and bump capybaras wait timeout

in features/desktop/aspect_navigation.feature:18 we quickly leave the page
before waiting for the request to finish. By making the HTTP call
synchronous we wait for it to finish before we reflect the change in the DOM,
thus giving Capybara a chance to wait for it. Also let Capybara wait longer.
This should random failures of the aforementioned cuke rarer.
parent f9c230dd
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
app.models.Aspect = Backbone.Model.extend({ app.models.Aspect = Backbone.Model.extend({
toggleSelected: function(){ toggleSelected: function(){
this.set({'selected' : !this.get('selected')}); this.set({'selected' : !this.get('selected')}, {async: false});
} }
}); });
...@@ -23,7 +23,7 @@ prefork = proc do ...@@ -23,7 +23,7 @@ prefork = proc do
# Capybara.default_wait_time = 30 # Capybara.default_wait_time = 30
# While there are a lot of failures, wait less, avoiding travis timeout # While there are a lot of failures, wait less, avoiding travis timeout
Capybara.default_wait_time = 10 Capybara.default_wait_time = 15
# If you set this to false, any error raised from within your app will bubble # If you set this to false, any error raised from within your app will bubble
# up to your step definition and out to cucumber unless you catch it somewhere # up to your step definition and out to cucumber unless you catch it somewhere
...@@ -117,5 +117,5 @@ end ...@@ -117,5 +117,5 @@ end
# DeferredGarbageCollection.start # DeferredGarbageCollection.start
# end # end
# After do # After do
# DeferredGarbageCollection.reconsider # DeferredGarbageCollection.reconsider
# end # end
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter