From 7bf45cf0396b1dfd88a3dca3e60513a8c5f0267d Mon Sep 17 00:00:00 2001 From: nextcloud-command Date: Sun, 3 Sep 2023 02:38:20 +0000 Subject: [PATCH 1/2] chore(dev-deps): Bump nextcloud/ocp package Signed-off-by: GitHub --- composer.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.lock b/composer.lock index 64bf437998c..e454445b3ea 100644 --- a/composer.lock +++ b/composer.lock @@ -4305,5 +4305,5 @@ "platform-dev": { "ext-mbstring": "*" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From dc7afeebbaf074538aa531c6b37948790972d816 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 3 Sep 2023 21:21:02 +0200 Subject: [PATCH 2/2] fix(cypress): relax assertion on Nextcloud homepage title The title changed leading to breaking assertion in the link test. As the title may change again just look for the term `Nextcloud` - rather than the full title. Signed-off-by: Max --- cypress/e2e/links.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/links.spec.js b/cypress/e2e/links.spec.js index e5ceb60362a..afb0c16d24b 100644 --- a/cypress/e2e/links.spec.js +++ b/cypress/e2e/links.spec.js @@ -32,7 +32,7 @@ describe('test link marks', function() { cy.getContent() .find('.widgets--list', { timeout: 10000 }) .find('.widget-default--title') - .contains('Nextcloud - Online collaboration platform') + .contains('Nextcloud') }) it('does not show a link preview for links within a paragraph', () => {