We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5de798 commit 7c7a8b3Copy full SHA for 7c7a8b3
trackers/javascript-tracker/test/functional/cookies.test.ts
@@ -2,15 +2,15 @@ describe('Tracker created domain cookies', () => {
2
it('contain the expected cookie names', async () => {
3
await browser.url('/cookies.html');
4
await browser.waitUntil(async () => (await $('#init').getText()) === 'true', {
5
- timeout: 10000,
+ timeout: 5000,
6
timeoutMsg: 'expected init after 5s',
7
- interval: 5000,
+ interval: 250,
8
});
9
10
await browser.waitUntil(async () => (await $('#cookies').getText()) !== '', {
11
12
timeoutMsg: 'expected cookie to be set after 5s',
13
14
15
16
const cookies = await $('#cookies').getText();
0 commit comments