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,14 +2,31 @@ import { describe, test, assert, afterEach } from 'vitest';
import { render, cleanup, type RenderResult } from '@testing-library/vue'; import { render, cleanup, type RenderResult } from '@testing-library/vue';
import './init'; import './init';
import type { DriveFile } from 'misskey-js/built/entities'; import type { DriveFile } from 'misskey-js/built/entities';
import { components } from '@/components';
import { directives } from '@/directives'; import { directives } from '@/directives';
import MkMediaImage from '@/components/MkMediaImage.vue'; import MkMediaImage from '@/components/MkMediaImage.vue';
describe('MkMediaImage', () => { describe('MkMediaImage', () => {
const renderMediaImage = (image: Partial<DriveFile>): RenderResult => { const renderMediaImage = (image: Partial<DriveFile>): RenderResult => {
return render(MkMediaImage, { return render(MkMediaImage, {
props: { image }, props: {
global: { directives }, image: {
id: 'xxxxxxxx',
createdAt: (new Date()).toJSON(),
isSensitive: false,
name: 'example.png',
thumbnailUrl: null,
url: '',
type: 'application/octet-stream',
size: 1,
md5: '15eca7fba0480996e2245f5185bf39f2',
blurhash: null,
comment: null,
properties: {},
...image,
} as DriveFile,
},
global: { directives, components },
}); });
}; };

View file

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