Skip to content
Snippets Groups Projects
Commit cc46f263 authored by Filipa Lacerda's avatar Filipa Lacerda Committed by Kamil Trzcinski
Browse files

Adds tests for javascript

parent c9de56fa
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,4 +11,4 @@
 
.clusters-dropdown-menu {
max-width: 100%;
}
\ No newline at end of file
}
Loading
Loading
@@ -7,8 +7,6 @@
= icon('chevron-down')
%ul.dropdown-menu.clusters-dropdown-menu.dropdown-menu-full-width
%li
%a{ href: providers_gcp_new_namespace_project_clusters_path(@project.namespace, @project) }
= s_('ClusterIntegration| Create cluster on Google Engine')
= link_to(s_('ClusterIntegration| Create cluster on Google Engine'), providers_gcp_new_namespace_project_clusters_path(@project.namespace, @project))
%li
%a{ href: platforms_kubernetes_new_namespace_project_clusters_path(@project.namespace, @project) }
= s_('ClusterIntegration| Add existing cluster')
= = link_to(s_('ClusterIntegration| Add existing cluster'), platforms_kubernetes_new_namespace_project_clusters_path(@project.namespace, @project))
Loading
Loading
@@ -36,6 +36,20 @@ describe('Clusters', () => {
});
});
 
describe('showToken', () => {
it('should update tye field type', () => {
cluster.showTokenButton.click();
expect(
cluster.tokenField.getAttribute('type'),
).toEqual('text');
cluster.showTokenButton.click();
expect(
cluster.tokenField.getAttribute('type'),
).toEqual('password');
});
});
describe('checkForNewInstalls', () => {
const INITIAL_APP_MAP = {
helm: { status: null, title: 'Helm Tiller' },
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment