Skip to content

Commit 51b16c0

Browse files
committed
test(ci): bump timeouts
1 parent 36c3cf9 commit 51b16c0

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ jobs:
6363
background: true
6464
- run:
6565
working_directory: .
66-
command: npx cypress run
66+
command: |
67+
pwd
68+
sleep 15
69+
npx cypress run --config defaultCommandTimeout=55000
6770
no_output_timeout: 1m
6871
workflows:
6972
browser_build:

cypress/integration/api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ context('Fusion Studio', function () {
2121
}),
2222
});
2323
},
24-
}).get('#theia-top-panel', {timeout: 30000})
24+
}).get('#theia-top-panel', {timeout: 60000})
2525
.should('be.visible')
2626
.get('.theia-preload').should('not.exist');
2727
cy.addConnection();
@@ -45,7 +45,7 @@ context('Fusion Studio', function () {
4545
}),
4646
});
4747
},
48-
}).get('#theia-top-panel', {timeout: 30000})
48+
}).get('#theia-top-panel', {timeout: 60000})
4949
.should('be.visible')
5050
.get('.theia-preload').should('not.exist');
5151
cy.addConnection();

cypress/integration/eval_panel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
context('Fusion Studio', function() {
33
beforeEach('IDE', function(){
44
cy.visit('/')
5-
.get('#theia-top-panel', {timeout: 30000})
5+
.get('#theia-top-panel', {timeout: 60000})
66
.should('be.visible')
77
.get('.theia-preload').should('not.exist');
88
})

cypress/integration/operations_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ context('Fusion Studio', function () {
1111
describe('Documents and Collections', function () {
1212
it('Browse to root dir "db"', function () {
1313
cy.visit('/')
14-
.get('#theia-top-panel', { timeout: 30000 })
14+
.get('#theia-top-panel', { timeout: 60000 })
1515
.should('be.visible')
1616
.get('.theia-preload').should('not.exist');
1717
cy.addConnection();

cypress/integration/properties.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ context('Properties dialog', function () {
2020
});
2121
before(function () {
2222
cy.visit('/')
23-
.get('#theia-top-panel', { timeout: 30000 })
23+
.get('#theia-top-panel', { timeout: 60000 })
2424
.should('be.visible')
2525
.get('.theia-preload').should('not.exist');
2626
cy.addConnection();

cypress/integration/tree_spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ context('Fusion Studio', function() {
55
describe('Connections', function() {
66
beforeEach('IDE', function(){
77
cy.visit('/')
8-
.get('#theia-top-panel', {timeout: 30000})
8+
.get('#theia-top-panel', {timeout: 60000})
99
.should('be.visible')
1010
.get('.theia-preload').should('not.exist');
1111
})
@@ -69,7 +69,7 @@ context('Fusion Studio', function() {
6969
describe('Security', function() {
7070
before('Connect', function () {
7171
cy.visit('/')
72-
.get('#theia-top-panel', {timeout: 30000})
72+
.get('#theia-top-panel', {timeout: 60000})
7373
.should('be.visible')
7474
.get('.theia-preload').should('not.exist');
7575
cy.get(':nth-child(1) > .p-MenuBar-itemLabel')

0 commit comments

Comments
 (0)