Is there a way to run specific code block before and after each cucumber feature with certain tag?
Since setup process is very expensive I don\'t want to run it bef
a modification of the first answer works for me with single quotes
Before('@feature_with_expensive_setup') do unless '@setup_is_done' # perform expensive setup code here .. @setup_is_done = true end end