PuffercatApps/tests/unit/example.spec.js

9 lines
303 B
JavaScript
Raw Permalink Normal View History

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