summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2020-03-20 11:45:00 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-03-20 14:51:08 +0000
commitd52b55fc14636a9ed69de6c8b5f0e75d34f3a138 (patch)
tree07ae3d1cb11872207c9bff5894b8952fb4db9444
parenta216694e6605dac05cc7ae91de637b0e6198323a (diff)
downloadnextcloud-server-d52b55fc14636a9ed69de6c8b5f0e75d34f3a138.tar.gz
nextcloud-server-d52b55fc14636a9ed69de6c8b5f0e75d34f3a138.zip
Force compatible dependency versions in acceptance tests
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 <danxuliu@gmail.com>
-rw-r--r--tests/acceptance/composer.json4
1 files 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": {