Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests/api
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-09-03 20:03:03 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-03 20:03:03 +0300
commit0081580a1722a0842755ed8bf28e122f4cc26c52 (patch)
treeb9e9ac86f7745b6870141f92eb2df9f69b988af2 /tests/api
parente7daae24d35c8fa1b4528b3574f24009c6bc6d1b (diff)
Delay navigation route loading
Fix for #293
Diffstat (limited to 'tests/api')
-rw-r--r--tests/api/OcsCreateUserCest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/api/OcsCreateUserCest.php b/tests/api/OcsCreateUserCest.php
index 131baf07..1950f7b3 100644
--- a/tests/api/OcsCreateUserCest.php
+++ b/tests/api/OcsCreateUserCest.php
@@ -33,7 +33,7 @@ class OcsCreateUserCest {
}
public function createUser(ApiTester $I, \Codeception\Scenario $scenario) {
- $scenario->skip('ownCloud master is broken');
+ //$scenario->skip('ownCloud master is broken');
$I->wantTo('create a user via the provisioning API');
$I->amHttpAuthenticated('admin', 'admin');
$I->haveHttpHeader('Content-Type', 'application/x-www-form-urlencoded');
@@ -51,7 +51,7 @@ class OcsCreateUserCest {
}
public function checkUserExists(ApiTester $I, \Codeception\Scenario $scenario) {
- $scenario->skip('ownCloud master is broken');
+ //$scenario->skip('ownCloud master is broken');
$I->wantTo('make sure the user exists');
$I->amHttpAuthenticated('admin', 'admin');
$I->haveHttpHeader('Content-Type', 'application/x-www-form-urlencoded');
@@ -67,7 +67,7 @@ class OcsCreateUserCest {
}
public function deleteUser(ApiTester $I, \Codeception\Scenario $scenario) {
- $scenario->skip('ownCloud master is broken');
+ //$scenario->skip('ownCloud master is broken');
$I->wantTo('delete the user');
$I->amHttpAuthenticated('admin', 'admin');
$I->haveHttpHeader('Content-Type', 'application/x-www-form-urlencoded');