1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +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:
- appwrite
resque:
image: registry.gitlab.com/appwrite/appwrite/resque-web:v1.0.2
restart: unless-stopped
networks:
- appwrite
ports:
- "5678:5678"
environment:
- RESQUE_WEB_HOST=redis
- RESQUE_WEB_PORT=6379
- RESQUE_WEB_HTTP_BASIC_AUTH_USER=user
- RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=password
# resque:
# image: registry.gitlab.com/appwrite/appwrite/resque-web:v1.0.2
# restart: unless-stopped
# networks:
# - appwrite
# ports:
# - "5678:5678"
# environment:
# - RESQUE_WEB_HOST=redis
# - RESQUE_WEB_PORT=6379
# - RESQUE_WEB_HTTP_BASIC_AUTH_USER=user
# - RESQUE_WEB_HTTP_BASIC_AUTH_PASSWORD=password
maildev:
image: djfarrelly/maildev

View file

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

View file

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

View file

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

View file

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