Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test('カウンターボタンをクリックすると値が増える', async ({
// Locatorの操作
await counter.click();
// Locatorのテキストを評価
await expect(counter).toHaveText('count is 1');
await expect(counter).toHaveText('count is 2');
});

test('Viteロゴ画像をクリックすると公式サイトに遷移する', async ({page, context}) => {
Expand Down
Loading