Skip to content

Commit

Permalink
chore: fix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-chang committed Jul 8, 2023
1 parent 36aebb1 commit ef40591
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/expose.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ describe('expose', () => {

it('access vm with <script setup> and defineExpose()', async () => {
const wrapper = mount(ScriptSetupExpose)
const vm = wrapper.vm as unknown as ({
const vm = wrapper.vm as unknown as {
inc: () => void
resetCount: () => void,
count: number,
refNonExposed: string,
resetCount: () => void
count: number
refNonExposed: string
refNonExposedGetter: () => string
});
}

commonTests(vm)

Expand Down

0 comments on commit ef40591

Please sign in to comment.