.js
This commit is contained in:
parent
b4fd455d1d
commit
5b950396d3
|
|
@ -7,8 +7,8 @@ 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 * as Misskey from 'misskey-js';
|
import type * as Misskey from 'misskey-js';
|
||||||
import { directives } from '@/directives';
|
import { directives } from '@/directives/index.js';
|
||||||
import { components } from '@/components/index';
|
import { components } from '@/components/index.js';
|
||||||
import XHome from '@/pages/user/home.vue';
|
import XHome from '@/pages/user/home.vue';
|
||||||
|
|
||||||
describe('XHome', () => {
|
describe('XHome', () => {
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@ 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 * as Misskey from 'misskey-js';
|
import type * as Misskey from 'misskey-js';
|
||||||
import { components } from '@/components';
|
import { components } from '@/components/index.js';
|
||||||
import { directives } from '@/directives';
|
import { directives } from '@/directives/index.js';
|
||||||
import MkMediaImage from '@/components/MkMediaImage.vue';
|
import MkMediaImage from '@/components/MkMediaImage.vue';
|
||||||
|
|
||||||
describe('MkMediaImage', () => {
|
describe('MkMediaImage', () => {
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@ 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 { components } from '@/components/index.js';
|
||||||
import { directives } from '@/directives';
|
import { directives } from '@/directives/index.js';
|
||||||
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
||||||
|
|
||||||
type SummalyResult = Awaited<ReturnType<typeof summaly>>;
|
type SummalyResult = Awaited<ReturnType<typeof summaly>>;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue