summaryrefslogtreecommitdiff
path: root/qa/spec/runtime/env_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/runtime/env_spec.rb')
-rw-r--r--qa/spec/runtime/env_spec.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/qa/spec/runtime/env_spec.rb b/qa/spec/runtime/env_spec.rb
index e8da51ddce7..57a72a04507 100644
--- a/qa/spec/runtime/env_spec.rb
+++ b/qa/spec/runtime/env_spec.rb
@@ -1,4 +1,8 @@
describe QA::Runtime::Env do
+ before do
+ allow(ENV).to receive(:[]).and_call_original
+ end
+
describe '.chrome_headless?' do
context 'when there is an env variable set' do
it 'returns false when falsey values specified' do
@@ -55,7 +59,6 @@ describe QA::Runtime::Env do
end
def stub_env(name, value)
- allow(ENV).to receive(:[]).and_call_original
allow(ENV).to receive(:[]).with(name).and_return(value)
end
end