From 8cf1affcd32dcc1818d01453c2b25da4383402e9 Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Sat, 9 Dec 2023 17:47:26 +0100 Subject: [PATCH] [doc] Revise documentation about Continous Integration --- documentation/developer/ContinuousIntegration.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/documentation/developer/ContinuousIntegration.rst b/documentation/developer/ContinuousIntegration.rst index d038ba21f8..94242ef28f 100644 --- a/documentation/developer/ContinuousIntegration.rst +++ b/documentation/developer/ContinuousIntegration.rst @@ -5,7 +5,7 @@ The GlobaLeaks codebase is continuously tested for bug within a complete continu Testes are performed at every commit by: -* performing static and dynamic testing on `TravisCI `_; +* performing continous integration testing with `GitHub Actions `_; * tracking tests coverage and code quality with `Codacy `_. Unit Tests @@ -21,12 +21,11 @@ Tests can be run manually by issuing: E2E Tests ========= -End to end tests are implemented by means of the Protractor AngularJS library. +End to end tests are implemented by means of Cypress. Tests can be run manually by issuing: .. code:: sh cd GlobaLeaks/client - ./node_modules/protractor/bin/webdriver-manager update - ./node_modules/protractor/bin/protractor tests/protractor.config.js + ./node_modules/cypress/bin/cypress run