-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test: 設定ダイアログのスクリーンショットテスト追加 #1953
The head ref may contain hidden characters: "\u8A2D\u5B9A\u30C0\u30A4\u30A2\u30ED\u30B0\u306E\u30B9\u30AF\u30EA\u30FC\u30F3\u30B7\u30E7\u30C3\u30C8\u30C6\u30B9\u30C8"
Conversation
const moveToFilenameDialog = async (page: Page, optionDialog: Locator) => { | ||
await optionDialog.getByRole("button", { name: "編集する" }).click(); | ||
const moveToFilenameDialog = async (page: Page, settingDialog: Locator) => { | ||
await settingDialog.getByRole("button", { name: "編集する" }).click(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
実装の方では「settingDialog」だったので、名称をそちらに合わせるようにしました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
後で設定パラメータが追加されることも考えて、スクリーンショットはちょっとだけ長めに撮影しています。
…into 設定ダイアログのスクリーンショットテスト
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sevenc-nanashi もしよかったらレビューお願いできると・・・!
fullPageを使わないようにリバートしました! |
@sevenc-nanashi もしよかったら再レビューお願いします・・・! 特に問題なさそうだったらマージしちゃおうと思います! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
大丈夫だと思います。
レビューありがとうございます! |
内容
設定ダイアログのスクリーンショットテストを追加しました。
デザインが変わった時にその差を確認したり、間違って変わっちゃったりするのを防げたりすると思います。
ちょっとスクロールしてスクリーンショットを撮影して、というのを繰り返します。
関連 Issue
その他
SettingDialog.vueでコピペされてる部分をv-forにする
タスクをやろうと思っていて、その前段階として実装しました。