You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
432 B
19 lines
432 B
import Vue from 'vue';
|
|
import { mount, TransitionStub } from '@vue/test-utils';
|
|
|
|
// prevent vue warning log
|
|
Vue.config.silent = true;
|
|
|
|
// stub transition
|
|
Vue.component('transition', TransitionStub as any);
|
|
|
|
// promisify setTimeout
|
|
export function later(delay: number = 0): Promise<void> {
|
|
return new Promise((resolve) => {
|
|
setTimeout(resolve, delay);
|
|
});
|
|
}
|
|
|
|
export * from './dom';
|
|
export * from './event';
|
|
export { mount };
|