Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/groups/observability/observability.html.haml_spec.rb')
-rw-r--r--spec/views/groups/observability/observability.html.haml_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/views/groups/observability/observability.html.haml_spec.rb b/spec/views/groups/observability/observability.html.haml_spec.rb
deleted file mode 100644
index 0561737cb39..00000000000
--- a/spec/views/groups/observability/observability.html.haml_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'groups/observability/observability.html.haml' do
- let(:iframe_url) { "foo.test" }
-
- before do
- allow(view).to receive(:observability_iframe_src).and_return(iframe_url)
- end
-
- it 'renders as expected' do
- render
- page = Capybara.string(rendered)
- div = page.find('#js-observability-app')
- expect(div['data-observability-iframe-src']).to eq(iframe_url)
- end
-end