This commit is contained in:
tamaina
2023-04-04 01:39:37 +00:00
parent 73d43f4d59
commit 9306ba7ca5
2 changed files with 21 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { describe, test, assert, afterEach } from 'vitest';
import { render, cleanup, type RenderResult } from '@testing-library/vue';
import './init';
import type { summaly } from 'summaly';
import { components } from '@/components';
import { directives } from '@/directives';
import MkUrlPreview from '@/components/MkUrlPreview.vue';
@@ -27,7 +28,7 @@ describe('MkMediaImage', () => {
const result = render(MkUrlPreview, {
props: { url: summary.url },
global: { directives },
global: { directives, components },
});
await new Promise<void>(resolve => {