diff options
| author | Lukas 'Eipi' Eipert <leipert@gitlab.com> | 2019-07-26 09:40:17 +0000 |
|---|---|---|
| committer | Fatih Acet <acetfatih@gmail.com> | 2019-07-26 09:40:17 +0000 |
| commit | 6df22f17d2aa255742f2a728df7a00c0af4ee84c (patch) | |
| tree | 7cecd30316101e1f760eefc75718dc1ecb472cd4 /spec/javascripts/registry/components | |
| parent | f2b6c6ca0de25512fa2c44f3058cdf24397954d3 (diff) | |
| download | gitlab-ce-6df22f17d2aa255742f2a728df7a00c0af4ee84c.tar.gz | |
Karma: Fix css selector for loading icon
The GitLab UI update changed the spinner selector from `spinner` to
`gl-spinner`, so we need to update it, so that our tests won't fail.
Diffstat (limited to 'spec/javascripts/registry/components')
| -rw-r--r-- | spec/javascripts/registry/components/app_spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/registry/components/app_spec.js b/spec/javascripts/registry/components/app_spec.js index 7b9b8d2b039..e7675669f7a 100644 --- a/spec/javascripts/registry/components/app_spec.js +++ b/spec/javascripts/registry/components/app_spec.js @@ -106,7 +106,7 @@ describe('Registry List', () => { it('should render a loading spinner', done => { Vue.nextTick(() => { - expect(vm.$el.querySelector('.spinner')).not.toBe(null); + expect(vm.$el.querySelector('.gl-spinner')).not.toBe(null); done(); }); }); |
