diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 2381874cb..1f8dc9769 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,7 +16,7 @@ env: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest strategy: matrix: diff --git a/test/acceptance/config_test.js b/test/acceptance/config_test.js index 140d2a4c3..0f6258526 100644 --- a/test/acceptance/config_test.js +++ b/test/acceptance/config_test.js @@ -8,12 +8,12 @@ Scenario('change config 1 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { Scenario('change config 2 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { I.amOnPage('/') - I.seeInCurrentUrl('github.com') -}).config({ url: 'https://github.com' }) + I.seeInCurrentUrl('codecept.io') +}).config({ url: 'https://codecept.io' }) Scenario('change config 3 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { I.amOnPage('/') - I.dontSeeInCurrentUrl('github.com') + I.dontSeeInCurrentUrl('codecept.io') I.seeInCurrentUrl('google.com') }) @@ -26,7 +26,7 @@ Scenario('change config 4 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { Scenario('change config 5 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { I.amOnPage('/') - I.dontSeeInCurrentUrl('github.com') + I.dontSeeInCurrentUrl('codecept.io') I.seeInCurrentUrl('google.com') }) @@ -38,10 +38,10 @@ Scenario('make API call and check response @Playwright', ({ I }) => { Scenario('change config 6 @WebDriverIO @Puppeteer @Playwright', ({ I }) => { I.amOnPage('/') - I.seeInCurrentUrl('github.com') + I.seeInCurrentUrl('codecept.io') }).config(async () => { await new Promise((r) => { setTimeout(r, 50) }) - return { url: 'https://github.com' } + return { url: 'https://codecept.io' } })