summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_tab_spec.js
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-08-10 14:32:35 -0500
committerEric Eastwood <contact@ericeastwood.com>2017-08-14 11:09:22 -0500
commit15f37411839ffede77f94887fba257168d3d60cb (patch)
treede78dba3602f75a88d9e7294d00f2955c0f4e71f /spec/javascripts/repo/components/repo_tab_spec.js
parenta081a60d89af1f05a8f6f243e073a96e35b2b349 (diff)
downloadgitlab-ce-15f37411839ffede77f94887fba257168d3d60cb.tar.gz
Remove loading state from repo_tab
Fix https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/12198#note_37143710
Diffstat (limited to 'spec/javascripts/repo/components/repo_tab_spec.js')
-rw-r--r--spec/javascripts/repo/components/repo_tab_spec.js20
1 files changed, 1 insertions, 19 deletions
diff --git a/spec/javascripts/repo/components/repo_tab_spec.js b/spec/javascripts/repo/components/repo_tab_spec.js
index f3572804b4a..a3b2d5dea82 100644
--- a/spec/javascripts/repo/components/repo_tab_spec.js
+++ b/spec/javascripts/repo/components/repo_tab_spec.js
@@ -12,7 +12,6 @@ describe('RepoTab', () => {
it('renders a close link and a name link', () => {
const tab = {
- loading: false,
url: 'url',
name: 'name',
};
@@ -26,7 +25,7 @@ describe('RepoTab', () => {
spyOn(vm, 'tabClicked');
expect(close.querySelector('.fa-times')).toBeTruthy();
- expect(name.textContent).toEqual(tab.name);
+ expect(name.textContent.trim()).toEqual(tab.name);
close.click();
name.click();
@@ -35,25 +34,8 @@ describe('RepoTab', () => {
expect(vm.tabClicked).toHaveBeenCalledWith(tab);
});
- it('renders a spinner if tab is loading', () => {
- const tab = {
- loading: true,
- url: 'url',
- };
- const vm = createComponent({
- tab,
- });
- const close = vm.$el.querySelector('.close');
- const name = vm.$el.querySelector(`a[title="${tab.url}"]`);
-
- expect(close).toBeFalsy();
- expect(name).toBeFalsy();
- expect(vm.$el.querySelector('.fa.fa-spinner.fa-spin')).toBeTruthy();
- });
-
it('renders an fa-circle icon if tab is changed', () => {
const tab = {
- loading: false,
url: 'url',
name: 'name',
changed: true,