blob: 398b472a3a7ea110589afea8263538cb7f96ed42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import { GlLink, GlSprintf } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import { nextTick } from 'vue';
import NewCluster from '~/clusters/components/new_cluster.vue';
import { helpPagePath } from '~/helpers/help_page_helper';
describe('NewCluster', () => {
let wrapper;
const createWrapper = async () => {
wrapper = shallowMount(NewCluster, { stubs: { GlLink, GlSprintf } });
await nextTick();
};
const findDescription = () => wrapper.findComponent(GlSprintf);
const findLink = () => wrapper.findComponent(GlLink);
beforeEach(() => {
return createWrapper();
});
it('renders the cluster component correctly', () => {
expect(wrapper.html()).toMatchSnapshot();
});
it('renders the correct information text', () => {
expect(findDescription().text()).toContain('Enter details about your cluster.');
});
it('renders a valid help link set by the backend', () => {
expect(findLink().attributes('href')).toBe(
helpPagePath('user/project/clusters/add_existing_cluster'),
);
});
});
|