Commit 8822e5a0 authored by Eulyeon Ko's avatar Eulyeon Ko

Remove feature flags

parent dfe0f8bb
...@@ -10,10 +10,6 @@ RSpec.describe "User views issues" do ...@@ -10,10 +10,6 @@ RSpec.describe "User views issues" do
let_it_be(:user) { create(:user) } let_it_be(:user) { create(:user) }
before do
stub_feature_flags(vue_issuables_list: false)
end
shared_examples "opens issue from list" do shared_examples "opens issue from list" do
it "opens issue" do it "opens issue" do
click_link(issue.title) click_link(issue.title)
...@@ -112,7 +108,7 @@ RSpec.describe "User views issues" do ...@@ -112,7 +108,7 @@ RSpec.describe "User views issues" do
end end
end end
context "when signed in as developer" do context "when signed in as developer", :js do
before do before do
project.add_developer(user) project.add_developer(user)
sign_in(user) sign_in(user)
...@@ -122,27 +118,7 @@ RSpec.describe "User views issues" do ...@@ -122,27 +118,7 @@ RSpec.describe "User views issues" do
include_examples "internal project" include_examples "internal project"
end end
context "when not signed in" do context "when not signed in", :js do
include_examples "public project" include_examples "public project"
end end
context 'when vue_issuables_list feature is enabled', :js do
before do
stub_feature_flags(vue_issuables_list: true)
end
context 'when signed in' do
before do
project.add_developer(user)
sign_in(user)
end
include_examples "public project"
include_examples "internal project"
end
context 'when not signed in' do
include_examples "public project"
end
end
end end
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