Commit 733cae70 authored by Stan Hu's avatar Stan Hu

Merge branch 'dz-fix-jupyter-spec' into 'master'

Add project to jupyter cluster app factory spec

See merge request gitlab-org/gitlab-ce!21717
parents cdcd9da3 ee57509d
......@@ -46,7 +46,7 @@ FactoryBot.define do
factory :clusters_applications_jupyter, class: Clusters::Applications::Jupyter do
oauth_application factory: :oauth_application
cluster factory: %i(cluster with_installed_helm provided_by_gcp)
cluster factory: %i(cluster with_installed_helm provided_by_gcp project)
end
end
end
......@@ -114,11 +114,7 @@ describe Clusters::Applications::Jupyter do
end
context 'when cluster belongs to a project' do
let(:project) { create(:project) }
before do
application.cluster.projects << project
end
let(:project) { application.cluster.first_project }
it 'sets GitLab project id' do
expect(values).to match(/GITLAB_PROJECT_ID: '?#{project.id}/)
......
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