Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
austintoddj committed Nov 10, 2020
1 parent dd6357a commit 3e374a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

runs-on: ubuntu-latest
strategy:
fail-fast: true
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
laravel: [^6.0, ^7.0, ^8.0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function testLoginRequestWillValidateAnInvalidEmail(): void
$response = $this->post('/canvas/login', [
'email' => 'not-an-email',
'password' => 'password',
]);
])->assertSessionHas('errors');

$this->assertInstanceOf(ValidationException::class, $response->exception);
}
Expand All @@ -40,7 +40,7 @@ public function testLoginRequestWillValidateAnEmailNotInTheDatabase(): void
$response = $this->post('/canvas/login', [
'email' => '[email protected]',
'password' => 'password',
]);
])->assertSessionHas('errors');

$this->assertInstanceOf(ValidationException::class, $response->exception);
}
Expand Down

0 comments on commit 3e374a8

Please sign in to comment.