@@ -37,7 +37,7 @@ describe('analytics autolinker', () => {
37
37
const currentUrl = await page . url ( ) ;
38
38
39
39
expect ( currentUrl ) . toContain ( '_ga=1234' ) ;
40
- } , 30000 ) ;
40
+ } , 60000 ) ;
41
41
42
42
test ( 'autolinker updates the URLs of a <bolt-button> with an external url (2nd in the config) + rendering to the Shadow DOM' , async function ( ) {
43
43
await page . addScriptTag ( {
@@ -58,7 +58,7 @@ describe('analytics autolinker', () => {
58
58
const currentUrl = await page . url ( ) ;
59
59
60
60
expect ( currentUrl ) . toContain ( '_ga' ) ;
61
- } , 30000 ) ;
61
+ } , 60000 ) ;
62
62
63
63
test ( 'autolinker tracks the URLs of a <bolt-button> with an external url (2nd in the config) + rendering to the Shadow DOM - even after re-rendering' , async function ( ) {
64
64
await page . addScriptTag ( {
@@ -87,7 +87,7 @@ describe('analytics autolinker', () => {
87
87
88
88
expect ( currentUrl ) . toContain ( '_ga' ) ;
89
89
expect ( currentUrl ) . toContain ( 'brightcove.com' ) ;
90
- } , 30000 ) ;
90
+ } , 60000 ) ;
91
91
92
92
test ( 'autolinker updates the URLs of a <bolt-button> with an external url + rendering to the Shadow DOM' , async function ( ) {
93
93
await page . addScriptTag ( {
@@ -108,7 +108,7 @@ describe('analytics autolinker', () => {
108
108
const currentUrl = await page . url ( ) ;
109
109
110
110
expect ( currentUrl ) . toContain ( '_ga' ) ;
111
- } , 30000 ) ;
111
+ } , 60000 ) ;
112
112
113
113
test ( 'autolinker updates the URLs of <bolt-button>s with external urls + render to the light DOM' , async function ( ) {
114
114
await page . addScriptTag ( {
@@ -130,7 +130,7 @@ describe('analytics autolinker', () => {
130
130
const currentUrl = await page . url ( ) ;
131
131
132
132
expect ( currentUrl ) . toContain ( '_ga' ) ;
133
- } , 30000 ) ;
133
+ } , 60000 ) ;
134
134
135
135
test ( 'autolinker does not track <bolt-button>s with urls not containing domains in the config' , async function ( ) {
136
136
await page . addScriptTag ( {
@@ -151,7 +151,7 @@ describe('analytics autolinker', () => {
151
151
const currentUrl = await page . url ( ) ;
152
152
153
153
expect ( currentUrl ) . not . toContain ( '_ga' ) ;
154
- } , 30000 ) ;
154
+ } , 60000 ) ;
155
155
156
156
test ( 'autolinker updates the URLs of a <bolt-link> with an external url + rendering to the Shadow DOM' , async function ( ) {
157
157
await page . addScriptTag ( {
@@ -173,7 +173,7 @@ describe('analytics autolinker', () => {
173
173
const currentUrl = await page . url ( ) ;
174
174
175
175
expect ( currentUrl ) . toContain ( '_ga' ) ;
176
- } , 30000 ) ;
176
+ } , 60000 ) ;
177
177
178
178
test ( 'autolinker updates the URLs of a <bolt-link> with an external url + rendering to the light DOM' , async function ( ) {
179
179
await page . addScriptTag ( {
@@ -195,7 +195,7 @@ describe('analytics autolinker', () => {
195
195
const currentUrl = await page . url ( ) ;
196
196
197
197
expect ( currentUrl ) . toContain ( '_ga' ) ;
198
- } , 30000 ) ;
198
+ } , 60000 ) ;
199
199
200
200
test ( 'autolinker does not track <bolt-link>s with urls not containing domains in the config' , async function ( ) {
201
201
await page . addScriptTag ( {
@@ -217,7 +217,7 @@ describe('analytics autolinker', () => {
217
217
const currentUrl = await page . url ( ) ;
218
218
219
219
expect ( currentUrl ) . not . toContain ( '_ga' ) ;
220
- } , 30000 ) ;
220
+ } , 60000 ) ;
221
221
222
222
test ( 'the correct inline config for specifying autolink domains inside Drupal exists' , async function ( ) {
223
223
await page . addScriptTag ( {
@@ -235,7 +235,7 @@ describe('analytics autolinker', () => {
235
235
} ) ;
236
236
237
237
expect ( config ) . toBe ( 'pega.com' ) ;
238
- } , 30000 ) ;
238
+ } , 60000 ) ;
239
239
240
240
test ( 'allow Drupal to configure which domains get configured / tracked by autolink.' , async function ( ) {
241
241
await page . addScriptTag ( {
@@ -260,5 +260,5 @@ describe('analytics autolinker', () => {
260
260
const currentUrl = await page . url ( ) ;
261
261
262
262
expect ( currentUrl ) . toContain ( '_ga' ) ;
263
- } , 30000 ) ;
263
+ } , 60000 ) ;
264
264
} ) ;
0 commit comments