Skip to content

Commit 75e9394

Browse files
docs: fix typos in documentation
1 parent 9e88707 commit 75e9394

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/e2e/e2eUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function setupPuppeteer() {
6666
await page.close()
6767
})
6868

69-
afterAll(async () => {
69+
after all(async () => {
7070
await browser.close()
7171
})
7272

test/unit/features/component/component-async.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('Component async', () => {
3030
}
3131
})
3232

33-
afterAll(function () {
33+
after all(function () {
3434
global.setTimeout = oldSetTimeout
3535
global.clearTimeout = oldClearTimeout
3636
})

test/unit/modules/observer/dep.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('Dep', () => {
4242
_target = Dep.target
4343
})
4444

45-
afterAll(() => {
45+
after all(() => {
4646
Dep.target = _target
4747
})
4848

test/unit/modules/vdom/patch/edge-cases.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ describe('vdom patch: edge cases', () => {
493493
},
494494
template: `
495495
<transition-group>
496-
<v-switch key="swicth" v-foo :on="isOn"/>
496+
<v-switch key="switch" v-foo :on="isOn"/>
497497
</transition-group>
498498
`
499499
}).$mount()

0 commit comments

Comments
 (0)