Skip to content

Commit e472857

Browse files
committed
test: relax CI detection timeouts
1 parent adfea57 commit e472857

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

test/test-ioslib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ describe('ioslib', function () {
1919
});
2020

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

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

test/test-simulator.js

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

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

172172
ioslib.simulator.detect(function (err, results) {
173173
if (err) {

test/test-teams.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ describe('teams', function () {
1717
});
1818

1919
it('detect teams', function (done) {
20-
this.timeout(5000);
21-
this.slow(2000);
20+
this.timeout(30000);
21+
this.slow(10000);
2222

2323
ioslib.teams.detect(function (err, results) {
2424
if (err) {

0 commit comments

Comments
 (0)