Skip to content

Commit 0aeadc6

Browse files
committed
update test timeout
1 parent a6e456f commit 0aeadc6

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

test/test-ioslib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('ioslib', function () {
1919
});
2020

2121
it('detect all iOS information', function (done) {
22-
this.timeout(60000);
22+
this.timeout(80000);
2323
this.slow(30000);
2424

2525
ioslib.detect(function (err, results) {

test/test-simulator.js

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ describe('simulator', function () {
166166
});
167167

168168
it('detect iOS Simulators', function (done) {
169-
this.timeout(5000);
169+
this.timeout(8000);
170170
this.slow(2000);
171171

172172
ioslib.simulator.detect(function (err, results) {
@@ -211,7 +211,7 @@ describe('simulator', function () {
211211
});
212212

213213
(process.env.CI ? it.skip : it)('fail with bad iOS Sim UDID', function (done) {
214-
this.timeout(5000);
214+
this.timeout(8000);
215215
this.slow(2000);
216216

217217
ioslib.simulator.findSimulators({
@@ -226,7 +226,7 @@ describe('simulator', function () {
226226
});
227227

228228
(process.env.CI ? it.skip : it)('iOS Sim + bad Watch Sim UDID + no watch app is valid', function (done) {
229-
this.timeout(5000);
229+
this.timeout(8000);
230230
this.slow(2000);
231231

232232
ioslib.simulator.findSimulators({
@@ -248,7 +248,7 @@ describe('simulator', function () {
248248
});
249249

250250
(process.env.CI ? it.skip : it)('fail with good iOS Sim UDID + bad Watch Sim UDID + watch app', function (done) {
251-
this.timeout(5000);
251+
this.timeout(8000);
252252
this.slow(2000);
253253

254254
ioslib.simulator.findSimulators({
@@ -264,7 +264,7 @@ describe('simulator', function () {
264264
});
265265

266266
(process.env.CI ? it.skip : it)('iOS Sim + Watch Sim + no watch app is valid', function (done) {
267-
this.timeout(5000);
267+
this.timeout(8000);
268268
this.slow(2000);
269269

270270
ioslib.simulator.findSimulators({
@@ -287,7 +287,7 @@ describe('simulator', function () {
287287
});
288288

289289
(process.env.CI ? it.skip : it)('iOS Sim is valid', function (done) {
290-
this.timeout(5000);
290+
this.timeout(8000);
291291
this.slow(2000);
292292

293293
ioslib.simulator.findSimulators({
@@ -309,7 +309,7 @@ describe('simulator', function () {
309309
});
310310

311311
(process.env.CI ? it.skip : it)('iOS Sim + Watch Sim + watch app is valid', function (done) {
312-
this.timeout(5000);
312+
this.timeout(8000);
313313
this.slow(2000);
314314

315315
ioslib.simulator.findSimulators({
@@ -333,7 +333,7 @@ describe('simulator', function () {
333333
});
334334

335335
(process.env.CI ? it.skip : it)('iOS Sim + watch app is valid', function (done) {
336-
this.timeout(5000);
336+
this.timeout(8000);
337337
this.slow(2000);
338338

339339
ioslib.simulator.findSimulators({
@@ -356,7 +356,7 @@ describe('simulator', function () {
356356
});
357357

358358
(process.env.CI ? it.skip : it)('no iOS Sim + Watch Sim + no watch app is valid', function (done) {
359-
this.timeout(5000);
359+
this.timeout(8000);
360360
this.slow(2000);
361361

362362
ioslib.simulator.findSimulators({
@@ -378,7 +378,7 @@ describe('simulator', function () {
378378
});
379379

380380
(process.env.CI ? it.skip : it)('no iOS Sim + no Watch Sim + no watch app is valid', function (done) {
381-
this.timeout(5000);
381+
this.timeout(8000);
382382
this.slow(2000);
383383

384384
ioslib.simulator.findSimulators({
@@ -399,7 +399,7 @@ describe('simulator', function () {
399399
});
400400

401401
(process.env.CI ? it.skip : it)('no iOS Sim + app + no Watch Sim + no watch app is valid', function (done) {
402-
this.timeout(5000);
402+
this.timeout(8000);
403403
this.slow(2000);
404404

405405
ioslib.simulator.findSimulators({
@@ -421,7 +421,7 @@ describe('simulator', function () {
421421
});
422422

423423
(process.env.CI ? it.skip : it)('no iOS Sim + app + no Watch Sim + watch app is valid', function (done) {
424-
this.timeout(5000);
424+
this.timeout(8000);
425425
this.slow(2000);
426426

427427
ioslib.simulator.findSimulators({
@@ -444,7 +444,7 @@ describe('simulator', function () {
444444
});
445445

446446
(process.env.CI ? it.skip : it)('no iOS Sim + app + Watch Sim + watch app is valid', function (done) {
447-
this.timeout(5000);
447+
this.timeout(8000);
448448
this.slow(2000);
449449

450450
ioslib.simulator.findSimulators({
@@ -468,7 +468,7 @@ describe('simulator', function () {
468468
});
469469

470470
(process.env.CI ? it.skip : it)('iPad Sim + Watch Sim + watch app is invalid', function (done) {
471-
this.timeout(5000);
471+
this.timeout(8000);
472472
this.slow(2000);
473473

474474
ioslib.simulator.findSimulators({
@@ -485,7 +485,7 @@ describe('simulator', function () {
485485
});
486486

487487
(process.env.CI ? it.skip : it)('iPad Sim + watch app is invalid', function (done) {
488-
this.timeout(5000);
488+
this.timeout(8000);
489489
this.slow(2000);
490490

491491
ioslib.simulator.findSimulators({
@@ -501,7 +501,7 @@ describe('simulator', function () {
501501
});
502502

503503
(process.env.CI ? it.skip : it)('find a iOS and Watch Sim', function (done) {
504-
this.timeout(5000);
504+
this.timeout(8000);
505505
this.slow(2000);
506506

507507
ioslib.simulator.findSimulators({

0 commit comments

Comments
 (0)