@@ -42,8 +42,6 @@ describe('Client code', () => {
42
42
describe ( 'behind a proxy' , ( ) => {
43
43
let proxy ;
44
44
45
- jest . setTimeout ( 30000 ) ;
46
-
47
45
beforeAll ( ( ) => {
48
46
proxy = startProxy ( 9000 ) ;
49
47
} ) ;
@@ -99,8 +97,6 @@ describe('Client complex inline script path', () => {
99
97
afterAll ( testServer . close ) ;
100
98
101
99
describe ( 'browser client' , ( ) => {
102
- jest . setTimeout ( 30000 ) ;
103
-
104
100
it ( 'uses the correct public hostname and sockPath' , ( done ) => {
105
101
runBrowser ( ) . then ( ( { page, browser } ) => {
106
102
page
@@ -137,8 +133,6 @@ describe('Client complex inline script path with sockPort', () => {
137
133
afterAll ( testServer . close ) ;
138
134
139
135
describe ( 'browser client' , ( ) => {
140
- jest . setTimeout ( 30000 ) ;
141
-
142
136
it ( 'uses the correct sockPort' , ( done ) => {
143
137
runBrowser ( ) . then ( ( { page, browser } ) => {
144
138
page
@@ -177,8 +171,6 @@ describe('Client complex inline script path with sockPort, no sockPath', () => {
177
171
afterAll ( testServer . close ) ;
178
172
179
173
describe ( 'browser client' , ( ) => {
180
- jest . setTimeout ( 30000 ) ;
181
-
182
174
it ( 'uses the correct sockPort and sockPath' , ( done ) => {
183
175
runBrowser ( ) . then ( ( { page, browser } ) => {
184
176
page
@@ -212,8 +204,6 @@ describe('Client complex inline script path with sockHost', () => {
212
204
afterAll ( testServer . close ) ;
213
205
214
206
describe ( 'browser client' , ( ) => {
215
- jest . setTimeout ( 30000 ) ;
216
-
217
207
it ( 'uses the correct sockHost' , ( done ) => {
218
208
runBrowser ( ) . then ( ( { page, browser } ) => {
219
209
page
@@ -231,8 +221,6 @@ describe('Client complex inline script path with sockHost', () => {
231
221
} ) ;
232
222
233
223
describe ( 'Client console.log' , ( ) => {
234
- jest . setTimeout ( 30000 ) ;
235
-
236
224
const baseOptions = {
237
225
port : 9000 ,
238
226
host : '0.0.0.0' ,
0 commit comments