Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/e2eUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function setupPuppeteer() {
await page.close()
})

afterAll(async () => {
after all(async () => {
await browser.close()
})

Expand Down
2 changes: 1 addition & 1 deletion test/unit/features/component/component-async.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Component async', () => {
}
})

afterAll(function () {
after all(function () {
global.setTimeout = oldSetTimeout
global.clearTimeout = oldClearTimeout
})
Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/observer/dep.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('Dep', () => {
_target = Dep.target
})

afterAll(() => {
after all(() => {
Dep.target = _target
})

Expand Down
2 changes: 1 addition & 1 deletion test/unit/modules/vdom/patch/edge-cases.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ describe('vdom patch: edge cases', () => {
},
template: `
<transition-group>
<v-switch key="swicth" v-foo :on="isOn"/>
<v-switch key="switch" v-foo :on="isOn"/>
</transition-group>
`
}).$mount()
Expand Down