test: add vtu style plugin (#8132)

This commit is contained in:
neverland 2021-02-11 12:19:21 +08:00 committed by GitHub
parent a41b2c03bd
commit 58cb5b6d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,5 @@
import './plugin';
// promisify setTimeout // promisify setTimeout
export function later(delay = 0): Promise<void> { export function later(delay = 0): Promise<void> {
return new Promise((resolve) => { return new Promise((resolve) => {

26
test/plugin.ts Normal file
View File

@ -0,0 +1,26 @@
/* eslint-disable max-classes-per-file */
import { ComponentPublicInstance } from 'vue';
import { config, VueWrapper, DOMWrapper } from '@vue/test-utils';
declare module '@vue/test-utils' {
// eslint-disable-next-line
export class DOMWrapper<ElementType extends Element> {
style: CSSStyleDeclaration;
}
// eslint-disable-next-line
class VueWrapper<T extends ComponentPublicInstance> {
style: CSSStyleDeclaration;
}
}
const stylePlugin = (
wrapper: VueWrapper<ComponentPublicInstance> | DOMWrapper<Element>
) => {
return {
style: (wrapper.element as HTMLElement).style,
};
};
config.plugins.DOMWrapper.install(stylePlugin);
config.plugins.VueWrapper.install(stylePlugin);