From e2d24b45590ab582bbdde2d2275880c9a4668669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Iv=C3=A1n=20Vieitez=20Parra?= <3857362+corrideat@users.noreply.github.com> Date: Sun, 17 Dec 2023 20:16:03 +0100 Subject: [PATCH] Update test suites used --- Gruntfile.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 915e3b56a5..b21e7789cc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -469,11 +469,9 @@ module.exports = (grunt) => { cypress[command]({ config: { baseUrl: process.env.API_URL }, // Exclude some spec files for CI runs - // group-chat|group-large|group-proposals are excluded because they take + // group-large|group-proposals are excluded because they take // comparatively long - // signup-and-login is pretty fast but is already covered by other - // tests - ...process.env.CI && { spec: 'test/cypress/integration/!(group-large|signup-and-login).spec.js' }, + ...process.env.CI && { spec: 'test/cypress/integration/!(group-large|group-proposals).spec.js' }, ...options }) .then(r => done(r.totalFailed === 0)).catch(done)