9 lines
303 B
JavaScript
9 lines
303 B
JavaScript
import { mount } from '@vue/test-utils';
|
|
import Tab1Page from '@/views/Apps.vue';
|
|
describe('Tab1Page.vue', () => {
|
|
it('renders tab 1 Tab1Page', () => {
|
|
const wrapper = mount(Tab1Page);
|
|
expect(wrapper.text()).toMatch('Tab 1 page');
|
|
});
|
|
});
|
|
//# sourceMappingURL=example.spec.js.map
|