Skip to content

Commit 120406e

Browse files
committed
fix tests
1 parent 48265c2 commit 120406e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/LayoutLanding.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import Footer from 'components/Footer.vue'
5858
import { defineComponent } from 'vue'
5959
6060
export default defineComponent({
61-
name: 'MainLayout',
61+
name: 'LayoutLanding',
6262
6363
components: {
6464
Footer

test/jest/__tests__/pages/Start.jest.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { beforeEach, describe, expect, it } from '@jest/globals'
22
import { installQuasarPlugin } from '@quasar/quasar-app-extension-testing-unit-jest'
33
import { shallowMount, VueWrapper } from '@vue/test-utils'
44

5-
import Start from '../../../../src/components/Landing.vue'
5+
import LayoutLanding from '../../../../src/components/LayoutLanding.vue'
66

77
// Specify here Quasar config you'll need to test your component
88
installQuasarPlugin()
99

10-
describe('Start', () => {
10+
describe('LayoutLanding', () => {
1111
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1212
let wrapper: VueWrapper<any>
1313

1414
beforeEach(() => {
15-
wrapper = shallowMount(Start)
15+
wrapper = shallowMount(LayoutLanding)
1616
})
1717

1818
it('should mount without errors', () => {

0 commit comments

Comments
 (0)