Remove Google Analytics #728 (#745)

* Remove Google Analytics #728

* Remove config file

* Don't set the vacentral url
This commit is contained in:
Nabeel S
2020-06-04 07:36:55 -07:00
committed by GitHub
parent c1408cb8fe
commit 3d211535f7
10 changed files with 1051 additions and 366 deletions

View File

@@ -36,7 +36,8 @@ class ApiTest extends TestCase
$uri = '/api/user';
// Missing auth header
$this->get($uri)->assertStatus(401);
$res = $this->get($uri);
$res->assertStatus(401);
// Test invalid API key
$this->withHeaders(['Authorization' => 'invalidKey'])->get($uri)