Skip to content

Commit

Permalink
test: macOS特有のテストをスキップする処理を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Feb 19, 2025
1 parent cae511f commit ca31298
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions tests/e2e/browser/song/ソング.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ 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,11 +44,6 @@ 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 ca31298

Please sign in to comment.