Skip to content

Commit

Permalink
macOSのみ、e2eテストを実行しない (#2006)
Browse files Browse the repository at this point in the history
* add: macosのみe2eテストを実行しない

* fix: 誤字修正

* add: 特定のテストケースのみスキップさせる

* delete: 特定のテストケースのみスキップできればよさそう

* issueへのリンクを追加

* フォーマッターを間違えたのを修正

* 修正漏れ

---------

Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
weweweok and Hiroshiba authored Apr 25, 2024
1 parent c0fa953 commit 177ecee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/e2e/browser/song/ソング.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ async function getCurrentPlayhead(page: Page) {
}

test("再生ボタンを押して再生できる", async ({ page }) => {
test.skip(
process.platform === "darwin",
// https://github.com/VOICEVOX/voicevox/issues/2007
"macOSだと原因不明でテストが落ちるためスキップします",
);
await navigateToSong(page);
// TODO: ページ内のオーディオを検出するテストを追加する

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ test.beforeEach(async ({ page }) => {
});

test("アップデートが通知されたりスキップしたりできる", async ({ page }) => {
test.skip(
process.platform === "darwin",
// https://github.com/VOICEVOX/voicevox/issues/2007
"macOSだと原因不明でテストが落ちるためスキップします",
);
await page.waitForTimeout(500);

// 通知されている
Expand Down

0 comments on commit 177ecee

Please sign in to comment.