Skip to content
This repository was archived by the owner on Feb 18, 2023. It is now read-only.

Commit 2d8c162

Browse files
committed
back with a travis fix.
1 parent 4a46217 commit 2d8c162

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ before_script:
88
- composer install
99
- php -r "copy('.env.example', '.env');"
1010
- php artisan key:generate
11+
- php artisan passport:install
1112
script:
12-
- vendor/bin/phpunit --filter test_it_responds_unauthenticated_for_list_users
13+
- vendor/bin/phpunit --coverage-clover=coverage.clover
1314
after_script:
1415
- wget https://scrutinizer-ci.com/ocular.phar
1516
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

tests/Feature/Users/UsersEndpointsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ function setUp()
2222
function test_it_responds_unauthenticated_for_list_users()
2323
{
2424
$response = $this->json('GET','api/users');
25-
dd(json_decode($response->getContent()));
2625
$response->assertStatus(401);
2726
$response->assertJson([
2827
'message' => 'Unauthenticated.',

0 commit comments

Comments
 (0)