1234567891011121314151617181920 |
- import { mount } from '@vue/test-utils'
- import FolderPage from '@/views/FolderPage.vue'
- describe('FolderPage.vue', () => {
- it('renders folder view', () => {
- const mockRoute = {
- params: {
- id: 'Outbox'
- }
- }
- const wrapper = mount(FolderPage, {
- global: {
- mocks: {
- $route: mockRoute
- }
- }
- })
- expect(wrapper.text()).toMatch('Explore UI Components')
- })
- })
|