-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.spec.js
55 lines (40 loc) · 1.5 KB
/
app.spec.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import {shallowMount, createLocalVue, mount} from '@vue/test-utils'
import App from "@/App";
import {BNavItem, BootstrapVue, IconsPlugin} from 'bootstrap-vue'
import NavBar from "@/components/NavBar";
import version from '@/../package.json';
// create an extended `Vue` constructor to install plugins locally
const localVue = createLocalVue()
localVue.use(BootstrapVue)
localVue.use(IconsPlugin);
describe('App.vue', () => {
it('is proper instance', () => {
// pass `localVue` to the mount options to actually use it
const wrapper = shallowMount(App, {localVue});
expect(wrapper.vm).toBeTruthy();
})
it('is visible', () => {
const wrapper = shallowMount(App, {localVue});
expect(wrapper.isVisible()).toBeTruthy();
})
it('has navbar', () => {
const wrapper = mount(App, {localVue});
expect(wrapper.getComponent(NavBar).exists()).toBeTruthy();
})
it('has logo', () => {
const wrapper = mount(App, {localVue});
// this should check for (no) alt text, no idea how
expect(wrapper.get("#logoIcon").exists()).toBeTruthy();
})
it('has 3 navbar items', () => {
const wrapper = mount(App, {localVue});
// pretty useless, but a nice example for later
expect(wrapper.findAllComponents(BNavItem).length).toBe(3);
})
it('has matching version code', () => {
const wrapper = mount(App, {localVue});
const versionCode = "v" + version.version;
expect(wrapper.get(".footer").text()).toContain(versionCode);
})
// TODO extend with a lot more tests
})