From 7e2ca56f1f82859522461fd3365f713463aea842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Frans=20Pondaco=20Winandy?= <jvfpw18@inf.ufpr.br> Date: Thu, 11 Jul 2019 11:46:05 -0300 Subject: [PATCH] Increase Timeout --- README.md | 4 ++++ cypress.json | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fad240f..7a64d0c 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ ```bash $ npm install ``` +#### Se não tiver npx instalado: +```bash +$ sudo npm install -g npx +``` ### Rodando os tests através da GUI: diff --git a/cypress.json b/cypress.json index 52a7755..6e4f125 100644 --- a/cypress.json +++ b/cypress.json @@ -1,10 +1,10 @@ { "baseUrl": "http://simcaq.c3sl.ufpr.br/", "integrationFolder": "./tests", - "execTimeout": 60000, - "taskTimeout": 60000, - "defaultCommandTimeout": 20000, - "pageLoadTimeout": 200000, - "responseTimeout": 50000, - "requestTimeout": 50000 + "execTimeout": 80000, + "taskTimeout": 80000, + "defaultCommandTimeout": 40000, + "pageLoadTimeout": 400000, + "responseTimeout": 100000, + "requestTimeout": 100000 } -- GitLab