type fixes ErrorPage

This commit is contained in:
Ulf Gebhardt 2023-12-11 17:12:26 +01:00
parent 8db7686c19
commit dcc44ec46b
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -1,10 +1,10 @@
import { mount } from '@vue/test-utils'
import { describe, it, expect } from 'vitest'
import { describe, it, expect, beforeEach } from 'vitest'
import ErrorPage from './_error.page.vue'
describe('ErrorPage', () => {
let wrapper
let wrapper: typeof ErrorPage
const Wrapper = () => {
return mount(ErrorPage)
}