Commit 80fe5e27 authored by Thong Kuah's avatar Thong Kuah

Fixes nil error in cluster app feature specs

When run locally, we move on to the next step immediately which means
that the application creation request is not even sent to the server.
This causes a nil error in the next step:

```
NoMethodError:
undefined method `make_installing!' for nil:NilClass
./spec/features/clusters/installing_applications_shared_examples.rb:196
```
parent 75a095fe
......@@ -187,6 +187,8 @@ shared_examples "installing applications on a cluster" do
page.within('.js-cluster-application-row-elastic_stack') do
click_button 'Install'
end
wait_for_requests
end
it 'shows status transition' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment