From 386b827e9b4e9d0be57b7e98ba0391bc11717852 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Fri, 20 Mar 2020 11:45:00 +0100 Subject: [PATCH] Force compatible dependency versions in acceptance tests MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit behat/mink 1.8 and behat/mink-selenium2-driver 1.4 introduced behaviour changes that broke the acceptance tests. Until the tests are updated to work with the newer versions the last known versions are forced. Note that some acceptance tests still fail after enforcing the compatible versions, although that is caused by changes in the Nextcloud server itself. Signed-off-by: Daniel Calviño Sánchez --- tests/acceptance/composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/acceptance/composer.json b/tests/acceptance/composer.json index 244aa976692..d15d8e13e55 100644 --- a/tests/acceptance/composer.json +++ b/tests/acceptance/composer.json @@ -1,9 +1,9 @@ { "require-dev": { "behat/behat": "^3.0", - "behat/mink": "^1.5", + "behat/mink": "1.7.1", "behat/mink-extension": "*", - "behat/mink-selenium2-driver": "*", + "behat/mink-selenium2-driver": "1.3.1", "phpunit/phpunit": "~4.6" }, "autoload": { -- 2.39.5