Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis <boudinot.regis@yahoo.com>2017-05-04 02:09:30 +0300
committerRegis <boudinot.regis@yahoo.com>2017-05-04 02:09:30 +0300
commit4fd874219318b4ac195264f390c1b04912aff7e1 (patch)
tree98d17340b19e738e4b031b2cabcebe7153514ab0 /spec/support
parent0a725c80ea6a0ac0544188c743ee3755190334d8 (diff)
fix failing slash command specs
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/features/issuable_slash_commands_shared_examples.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/support/features/issuable_slash_commands_shared_examples.rb b/spec/support/features/issuable_slash_commands_shared_examples.rb
index 4de61966daa..a67940e447a 100644
--- a/spec/support/features/issuable_slash_commands_shared_examples.rb
+++ b/spec/support/features/issuable_slash_commands_shared_examples.rb
@@ -3,7 +3,6 @@
shared_examples 'issuable record that supports slash commands in its description and notes' do |issuable_type|
include SlashCommandsHelpers
- include WaitForVueResource
let(:master) { create(:user) }
let(:assignee) { create(:user, username: 'bob') }
@@ -19,7 +18,6 @@ shared_examples 'issuable record that supports slash commands in its description
project.team << [assignee, :developer]
project.team << [guest, :guest]
login_with(master)
- wait_for_vue_resource
end
after do
@@ -46,7 +44,7 @@ shared_examples 'issuable record that supports slash commands in its description
end
end
- describe "note on #{issuable_type}" do
+ describe "note on #{issuable_type}", js: true do
before do
visit public_send("namespace_project_#{issuable_type}_path", project.namespace, project, issuable)
end