Skip to content

Commit

Permalink
Update mark_solved_problems.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
conlacda committed Apr 29, 2024
1 parent e6fb4fa commit 7689734
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ test.afterAll(async () => {
await page.close();
});

test('Test status of a participated contest', async () => {
await page.goto('https://atcoder.jp/contests/abc301/tasks');
await expect(page.locator('table').nth(0)).toContainText('Status');
});
// test('Test status of a participated contest', async () => {
// await page.goto('https://atcoder.jp/contests/abc301/tasks');
// await expect(page.locator('table').nth(0)).toContainText('Status');
// });

// test('Test status of an un-participated contest', async () => {
// await page.goto('https://atcoder.jp/contests/abc100/tasks');
// await expect(page.locator('table').nth(0)).not.toContainText('Status');
// })
test('Test status of an un-participated contest', async () => {
await page.goto('https://atcoder.jp/contests/abc100/tasks');
await expect(page.locator('table').nth(0)).not.toContainText('Status');
})

0 comments on commit 7689734

Please sign in to comment.