diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 80da83f..bea7007 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 - diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index f31e495..6eb72b6 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -14,7 +14,7 @@ class ExampleTest extends TestCase */ public function testBasicTest() { - $response = $this->get('/'); + $response = $this->get('/login'); $response->assertStatus(200); }