You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2019. It is now read-only.
Hello !
I am facing this issue that the hook are not trigger in the good order.
spec_helper.rb
RSpec.configuredo |config|
config.includeAllureRSpec::Adaptorconfig.before(:suite)doputs'Before Suite Spec helper'endconfig.before(:all)doputs'Before all Spec helper'endend
foo_spec.rb
require'spec_helper'describe'When I test allure rspec'dobefore(:all)doputs'Before all in foo spec'endit'should do something'doputs'In the test'expect(true).not_tobe_nilendend
Current result 👎
Cleaning output directory 'gen/allure-results'...
Before Suite Spec helper
Before all in foo spec
Before all Spec helper
In the test
Expected result 👍
Before Suite Spec helper
Before all Spec helper
Before all in foo spec
In the test