mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-17 06:59:01 +01:00
0a0af6887a
* test(frontend): Chromaticテストが落ちるのを修正 * fix: テストケースを修正 * refactor: comment
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
import { expect, userEvent, within } from '@storybook/test';
|
|
import { StoryObj } from '@storybook/vue3';
|
|
import MkA from './MkA.vue';
|
|
import { tick } from '@/scripts/test-utils.js';
|
|
export const Default = {
|
|
render(args) {
|
|
return {
|
|
components: {
|
|
MkA,
|
|
},
|
|
setup() {
|
|
return {
|
|
args,
|
|
};
|
|
},
|
|
computed: {
|
|
props() {
|
|
return {
|
|
...this.args,
|
|
};
|
|
},
|
|
},
|
|
template: '<MkA v-bind="props">Misskey</MkA>',
|
|
};
|
|
},
|
|
async play({ canvasElement }) {
|
|
const canvas = within(canvasElement);
|
|
const a = canvas.getByRole<HTMLAnchorElement>('link');
|
|
// FIXME: 通るけどその後落ちるのでコメントアウト
|
|
// await expect(a.href).toMatch(/^https?:\/\/.*#test$/);
|
|
await userEvent.pointer({ keys: '[MouseRight]', target: a });
|
|
await tick();
|
|
const menu = canvas.getByRole('menu');
|
|
await expect(menu).toBeInTheDocument();
|
|
await userEvent.click(a);
|
|
a.blur();
|
|
await tick();
|
|
await expect(menu).not.toBeInTheDocument();
|
|
},
|
|
args: {
|
|
to: '#test',
|
|
behavior: 'browser',
|
|
},
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
} satisfies StoryObj<typeof MkA>;
|