Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
conlacda committed May 6, 2024
1 parent 791012e commit 6871f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let page: Page;

test.beforeAll(async ({context}) => {
page = await context.newPage();
await page.goto('https://atcoder.jp/contests/abc347/custom_test?submissionId=51807898&testcase=00_sample_01.txt&problem=B');
await page.goto('https://atcoder.jp/contests/abc347/custom_test?submissionId=51807898&testcase=00_sample_01&problem=B');
const runButton: Locator = page.locator('a.btn.btn-primary:has-text("Run")').first();
await runButton.click();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ test.describe('Extension functions correctly on the submission details page', ()
test('Debug button', async () => {
const debugButton: Locator = page.locator('#debug-0');
await debugButton.click();
await page.waitForURL('https://atcoder.jp/contests/abc347/custom_test?submissionId=51807898&testcase=00_sample_01.txt&problem=B');
await page.waitForURL('https://atcoder.jp/contests/abc347/custom_test?submissionId=51807898&testcase=00_sample_01&problem=B');
});
});

0 comments on commit 6871f50

Please sign in to comment.