Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/repository/components/table/parent_row_spec.js')
-rw-r--r--spec/frontend/repository/components/table/parent_row_spec.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/spec/frontend/repository/components/table/parent_row_spec.js b/spec/frontend/repository/components/table/parent_row_spec.js
index 7020055271f..439c7ff080c 100644
--- a/spec/frontend/repository/components/table/parent_row_spec.js
+++ b/spec/frontend/repository/components/table/parent_row_spec.js
@@ -1,10 +1,11 @@
import { shallowMount, RouterLinkStub } from '@vue/test-utils';
+import { GlLoadingIcon } from '@gitlab/ui';
import ParentRow from '~/repository/components/table/parent_row.vue';
let vm;
let $router;
-function factory(path) {
+function factory(path, loadingPath) {
$router = {
push: jest.fn(),
};
@@ -13,6 +14,7 @@ function factory(path) {
propsData: {
commitRef: 'master',
path,
+ loadingPath,
},
stubs: {
RouterLink: RouterLinkStub,
@@ -61,4 +63,10 @@ describe('Repository parent row component', () => {
path: '/tree/master/app',
});
});
+
+ it('renders loading icon when loading parent', () => {
+ factory('app/assets', 'app');
+
+ expect(vm.find(GlLoadingIcon).exists()).toBe(true);
+ });
});