1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

Updated tests structure

This commit is contained in:
Eldad Fux 2020-01-12 08:35:37 +02:00
parent 211047d92e
commit 5d33721e60
5 changed files with 17 additions and 16 deletions

View file

@ -104,18 +104,18 @@ services:
networks: networks:
- appwrite - appwrite
resque: # resque:
image: registry.gitlab.com/appwrite/appwrite/resque-web:v1.0.2 # image: registry.gitlab.com/appwrite/appwrite/resque-web:v1.0.2
restart: unless-stopped # restart: unless-stopped
networks: # networks:
- appwrite # - appwrite
ports: # ports:
- "5678:5678" # - "5678:5678"
environment: # environment:
- RESQUE_WEB_HOST=redis # - RESQUE_WEB_HOST=redis
- RESQUE_WEB_PORT=6379 # - RESQUE_WEB_PORT=6379
- RESQUE_WEB_HTTP_BASIC_AUTH_USER=user # - RESQUE_WEB_HTTP_BASIC_AUTH_USER=user
- RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=password # - RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=password
maildev: maildev:
image: djfarrelly/maildev image: djfarrelly/maildev

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Tests\E2E; namespace Tests\E2E\Services\Account;
use Tests\E2E\Client; use Tests\E2E\Client;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Tests\E2E; namespace Tests\E2E\Services\Account;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\ProjectConsole; use Tests\E2E\Scopes\ProjectConsole;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Tests\E2E; namespace Tests\E2E\Services\Account;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\ProjectCustom; use Tests\E2E\Scopes\ProjectCustom;

View file

@ -1,7 +1,8 @@
<?php <?php
namespace Tests\E2E; namespace Tests\E2E\Services\Account;
use Tests\E2E\Client;
use Tests\E2E\Scopes\ProjectCustom; use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer; use Tests\E2E\Scopes\SideServer;