Skip to content

Commit 92cbbf9

Browse files
committed
chore: mark slow specs
1 parent cec7a7f commit 92cbbf9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spec/acceptance/activesupport_instrumentation_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def subscribed(callback, *args)
4747
expect(time_to_execute).to be >= 0.1
4848
end
4949

50-
it "builds the correct payload" do
50+
it "builds the correct payload", :slow do
5151
tracked_invocations = {}
5252

5353
callback = ->(_name, _start, _finish, _id, payload) do

spec/acceptance/sequence_setting_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@
306306
.to raise_error ArgumentError, /Value cannot be less than: 1000/
307307
end
308308

309-
it "raises an error for unmatched String values" do
309+
it "raises an error for unmatched String values", :slow do
310310
FactoryBot.define do
311311
sequence(:char, "c")
312312
end
@@ -328,7 +328,7 @@
328328
.to raise_error ArgumentError, /Unable to find 'Jester' in the sequence/
329329
end
330330

331-
it "times out when value cannot be found within timeout period" do
331+
it "times out when value cannot be found within timeout period", :slow do
332332
with_temporary_assignment(FactoryBot, :sequence_setting_timeout, 3) do
333333
FactoryBot.define do
334334
sequence(:test, "a")

0 commit comments

Comments
 (0)