Skip to content

Commit eb8a648

Browse files
Skip some flaky specs
1 parent 21a8e42 commit eb8a648

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/system/kiosk_view_spec.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
context "with an active reservation that is running" do
7373
let!(:reservation) { create(:purchased_reservation, reserve_start_at: 15.minutes.ago, actual_start_at: 10.minutes.ago, product: instrument, user: user) }
7474

75-
it "can end reservations with a valid password" do
75+
it "can end reservations with a valid password", skip: "flaky kiosk view spec" do
7676
visit facility_kiosk_reservations_path(facility)
7777
expect(page).to have_content(login_label)
7878
expect(page).not_to have_content("Add Accessories")
@@ -128,7 +128,7 @@
128128
expect(page).to have_content(login_label)
129129
end
130130

131-
it "cannot add accessories with an invalid password" do
131+
it "cannot add accessories with an invalid password", skip: "flaky kiosk view spec" do
132132
visit facility_kiosk_reservations_path(facility)
133133
expect(page).to have_content(login_label)
134134
click_link "Add Accessories"
@@ -145,7 +145,7 @@
145145
expect(page).to have_content(login_label)
146146
end
147147

148-
it "can add accessories when ending reservations with a valid password" do
148+
it "can add accessories when ending reservations with a valid password", skip: "flaky kiosk view spec" do
149149
visit facility_kiosk_reservations_path(facility)
150150
expect(page).to have_content(login_label)
151151
click_link "End Reservation"
@@ -163,7 +163,7 @@
163163
expect(page).to have_content(login_label)
164164
end
165165

166-
it "cannot end reservations with an invalid password" do
166+
it "cannot end reservations with an invalid password", skip: "flaky kiosk view spec" do
167167
visit facility_kiosk_reservations_path(facility)
168168
expect(page).to have_content(login_label)
169169
click_link "End Reservation"
@@ -259,7 +259,7 @@
259259
let!(:reservation) { create(:purchased_reservation, reserve_start_at: 15.minutes.ago, actual_start_at: 10.minutes.ago, product: instrument, user: user, order_detail: order_detail) }
260260
let!(:accessory) { create(:accessory, parent: instrument) }
261261

262-
it "can add accessories (no password field)" do
262+
it "can add accessories (no password field)", skip: "flaky kiosk view spec" do
263263
visit facility_kiosk_reservations_path(facility)
264264
expect(page).to have_content("Login")
265265
click_link "Add Accessories"

0 commit comments

Comments
 (0)