Added unzip for gitlab CI

Changed test to use /login
This commit is contained in:
Deon George 2018-04-10 21:58:25 +10:00
parent b441eb6e25
commit d6cb505e1c
No known key found for this signature in database
GPG Key ID: 7670E8DC27415254
2 changed files with 3 additions and 3 deletions

View File

@ -29,8 +29,8 @@ before_script:
#- echo 'deb http://deb.debian.org/debian jessie non-free' >> /etc/apt/sources.list.d/non-free.list
#- apt-get update -yqq
# Add gnupg
- apt-get update -yqq && apt-get install gnupg2 -yqq
# Add gnupg & zip
- apt-get update -yqq && apt-get install gnupg2 unzip -yqq
# Upgrade to Node 9
- curl -sL https://deb.nodesource.com/setup_9.x | bash -

View File

@ -14,7 +14,7 @@ class ExampleTest extends TestCase
*/
public function testBasicTest()
{
$response = $this->get('/');
$response = $this->get('/login');
$response->assertStatus(200);
}