Skip to content

Commit ad174d1

Browse files
committed
Merge branch '3.x' into chore/bump-detox-helper-4896
2 parents fa474ff + f3c9708 commit ad174d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"publish-beta": "./runok.js publish:next-beta-version"
7676
},
7777
"dependencies": {
78-
"@codeceptjs/configure": "1.0.2",
78+
"@codeceptjs/configure": "1.0.3",
7979
"@codeceptjs/helper": "2.0.4",
8080
"@cucumber/cucumber-expressions": "18",
8181
"@cucumber/gherkin": "32",

test/acceptance/session_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Scenario('screenshots reflect the current page of current session @Puppeteer @Pl
4646
})
4747

4848
Scenario('Different cookies for different sessions @Playwright @Puppeteer', async ({ I }) => {
49-
const cookiePage = 'https://www.microsoft.com/en-au/'
50-
const cookieName = 'MUID'
49+
const cookiePage = 'https://google.com/'
50+
const cookieName = 'AEC'
5151
const cookies = {}
5252

5353
I.amOnPage(cookiePage)
@@ -68,7 +68,7 @@ Scenario('Different cookies for different sessions @Playwright @Puppeteer', asyn
6868
cookies.mary = (await I.grabCookie(cookieName)).value
6969
I.say(`${cookieName}: ${cookies.mary}`)
7070
})
71-
await I.seeInCurrentUrl('en-au')
71+
await I.seeInCurrentUrl('google.com')
7272
assert(cookies.default)
7373
assert(cookies.john)
7474
assert(cookies.mary)

0 commit comments

Comments
 (0)