Commit 2faf28fe authored by Filipa Lacerda's avatar Filipa Lacerda

Remove forgotten fdescribe

parent d323bb79
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
'saveNote', 'saveNote',
]), ]),
setIsSubmitButtonDisabled(note, isSubmitting) { setIsSubmitButtonDisabled(note, isSubmitting) {
if (!_.isEmpty(note) && !isSubmitting) { if (!_.isEmpty(note) && !isSubmitting) {
this.isSubmitButtonDisabled = false; this.isSubmitButtonDisabled = false;
} else { } else {
this.isSubmitButtonDisabled = true; this.isSubmitButtonDisabled = true;
......
...@@ -153,8 +153,8 @@ ...@@ -153,8 +153,8 @@
}, },
created() { created() {
this.emojiSmiling = emojiSmiling; this.emojiSmiling = emojiSmiling;
this.emojiSmile = this.emojiSmile; this.emojiSmile = emojiSmile;
this.emojiSmiley = this.emojiSmiley; this.emojiSmiley = emojiSmiley;
}, },
}; };
</script> </script>
......
...@@ -168,6 +168,7 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps ...@@ -168,6 +168,7 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
author: project.users.first, author: project.users.first,
description: "# Description header" description: "# Description header"
) )
wait_for_requests
end end
step 'project "Shop" have "Tweet control" open issue' do step 'project "Shop" have "Tweet control" open issue' do
......
...@@ -163,5 +163,7 @@ module SharedNote ...@@ -163,5 +163,7 @@ module SharedNote
page.within(".note") do page.within(".note") do
expect(page).to have_content("+1 Awesome!") expect(page).to have_content("+1 Awesome!")
end end
wait_for_requests
end end
end end
...@@ -30,7 +30,7 @@ import '~/notes'; ...@@ -30,7 +30,7 @@ import '~/notes';
return escapedString; return escapedString;
}; };
fdescribe('Notes', function() { describe('Notes', function() {
const FLASH_TYPE_ALERT = 'alert'; const FLASH_TYPE_ALERT = 'alert';
var commentsTemplate = 'merge_requests/merge_request_with_comment.html.raw'; var commentsTemplate = 'merge_requests/merge_request_with_comment.html.raw';
preloadFixtures(commentsTemplate); preloadFixtures(commentsTemplate);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment