Skip to content

Commit 6db436f

Browse files
committed
ignore(revert): re-enable test use default timeout
1 parent 6a4aa67 commit 6db436f

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,8 @@ jobs:
6363
background: true
6464
- run:
6565
working_directory: .
66-
command: |
67-
pwd
68-
sleep 15
69-
npx cypress run --config defaultCommandTimeout=58000
66+
# command: npx cypress run --config defaultCommandTimeout=58000
67+
command: npx cypress run
7068
no_output_timeout: 2m
7169
workflows:
7270
browser_build:
@@ -113,6 +111,6 @@ workflows:
113111
# - run: curl --retry 5 http://localhost:8080
114112
# command: npx cypress run
115113
# no-workspace: false
116-
# record: true
114+
# record: false
117115
# store_artifacts: true
118116
# tags: "eXist-db,latest"

cypress/integration/01_api-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// <reference types="Cypress" />
22

33
context('Talking to the api directly', () => {
4-
describe.skip('API version', () => {
4+
describe('API version', () => {
55
before(function() {
66
cy.connect();
77
cy.visit('/');

cypress/integration/02_eval_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// <reference types="Cypress" />
2-
context.skip('Evaluation', () => {
2+
context('Evaluation', () => {
33
before(() => {
44
cy.visit('/')
55
.get('#theia-top-panel')

0 commit comments

Comments
 (0)