From 3f51b6e005db3f882e94256eb88987586199d175 Mon Sep 17 00:00:00 2001 From: Stef Schenkelaars Date: Sun, 18 Oct 2020 09:59:45 +0200 Subject: [PATCH] Trying to reproduce #7 --- spec/integration/failing_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spec/integration/failing_spec.rb b/spec/integration/failing_spec.rb index f0776df..45da1fb 100644 --- a/spec/integration/failing_spec.rb +++ b/spec/integration/failing_spec.rb @@ -19,4 +19,12 @@ it 'does not create an annotiation for passing specs' do expect(true).to eq true end + + describe 'display all annotations' do + (1..500).each do |number| + it "test #{number}" do + expect(true).to eq false + end + end + end end