summaryrefslogtreecommitdiff
path: root/spec/features/projects/clusters
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/clusters')
-rw-r--r--spec/features/projects/clusters/applications_spec.rb2
-rw-r--r--spec/features/projects/clusters/gcp_spec.rb14
-rw-r--r--spec/features/projects/clusters/user_spec.rb6
3 files changed, 11 insertions, 11 deletions
diff --git a/spec/features/projects/clusters/applications_spec.rb b/spec/features/projects/clusters/applications_spec.rb
index fab9e035d53..5b14457318b 100644
--- a/spec/features/projects/clusters/applications_spec.rb
+++ b/spec/features/projects/clusters/applications_spec.rb
@@ -189,7 +189,7 @@ describe 'Clusters Applications', :js do
retries = 0
while Clusters::Cluster.last.application_helm.nil?
- raise "Timed out waiting for helm application to be created in DB" if (retries += 1) > 3
+ raise _("Timed out waiting for helm application to be created in DB") if (retries += 1) > 3
sleep(1)
end
diff --git a/spec/features/projects/clusters/gcp_spec.rb b/spec/features/projects/clusters/gcp_spec.rb
index 9322e29d744..3343ed319b8 100644
--- a/spec/features/projects/clusters/gcp_spec.rb
+++ b/spec/features/projects/clusters/gcp_spec.rb
@@ -63,7 +63,7 @@ describe 'Gcp Cluster', :js do
it 'user sees a cluster details page and creation status' do
subject
- expect(page).to have_content('Kubernetes cluster is being created on Google Kubernetes Engine...')
+ expect(page).to have_content(_('Kubernetes cluster is being created on Google Kubernetes Engine...'))
Clusters::Cluster.last.provider.make_created!
@@ -73,11 +73,11 @@ describe 'Gcp Cluster', :js do
it 'user sees a error if something wrong during creation' do
subject
- expect(page).to have_content('Kubernetes cluster is being created on Google Kubernetes Engine...')
+ expect(page).to have_content(_('Kubernetes cluster is being created on Google Kubernetes Engine...'))
- Clusters::Cluster.last.provider.make_errored!('Something wrong!')
+ Clusters::Cluster.last.provider.make_errored!(_('Something wrong!'))
- expect(page).to have_content('Something wrong!')
+ expect(page).to have_content(_('Something wrong!'))
end
it 'user sees RBAC is enabled by default' do
@@ -116,7 +116,7 @@ describe 'Gcp Cluster', :js do
end
it 'user sees the successful message' do
- expect(page).to have_content('Kubernetes cluster was successfully updated.')
+ expect(page).to have_content(_('Kubernetes cluster was successfully updated.'))
end
end
@@ -128,7 +128,7 @@ describe 'Gcp Cluster', :js do
end
it 'user sees the successful message' do
- expect(page).to have_content('Kubernetes cluster was successfully updated.')
+ expect(page).to have_content(_('Kubernetes cluster was successfully updated.'))
expect(cluster.reload.platform_kubernetes.namespace).to eq('my-namespace')
end
end
@@ -141,7 +141,7 @@ describe 'Gcp Cluster', :js do
end
it 'user sees creation form with the successful message' do
- expect(page).to have_content('Kubernetes cluster integration was successfully removed.')
+ expect(page).to have_content(_('Kubernetes cluster integration was successfully removed.'))
expect(page).to have_link('Add Kubernetes cluster')
end
end
diff --git a/spec/features/projects/clusters/user_spec.rb b/spec/features/projects/clusters/user_spec.rb
index 1f2f7592d8b..a57b99ea23a 100644
--- a/spec/features/projects/clusters/user_spec.rb
+++ b/spec/features/projects/clusters/user_spec.rb
@@ -76,7 +76,7 @@ describe 'User Cluster', :js do
end
it 'user sees the successful message' do
- expect(page).to have_content('Kubernetes cluster was successfully updated.')
+ expect(page).to have_content(_('Kubernetes cluster was successfully updated.'))
end
end
@@ -88,7 +88,7 @@ describe 'User Cluster', :js do
end
it 'user sees the successful message' do
- expect(page).to have_content('Kubernetes cluster was successfully updated.')
+ expect(page).to have_content(_('Kubernetes cluster was successfully updated.'))
expect(cluster.reload.name).to eq('my-dev-cluster')
expect(cluster.reload.platform_kubernetes.namespace).to eq('my-namespace')
end
@@ -102,7 +102,7 @@ describe 'User Cluster', :js do
end
it 'user sees creation form with the successful message' do
- expect(page).to have_content('Kubernetes cluster integration was successfully removed.')
+ expect(page).to have_content(_('Kubernetes cluster integration was successfully removed.'))
expect(page).to have_link('Add Kubernetes cluster')
end
end