mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
Revert "Merge pull request #413 from def-studio/fix_skipping_tests_with_exception_asserting"
This reverts commite853792a59, reversing changes made to205238fcbf.
This commit is contained in:
@ -1,7 +1,5 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\ExpectationFailedException;
|
||||
|
||||
it('gives access the the underlying expectException', function () {
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
|
||||
@ -39,7 +37,3 @@ it('can just define the message if given condition is true', function () {
|
||||
it('can just define the message if given condition is 1', function () {
|
||||
throw new Exception('Something bad happened');
|
||||
})->throwsIf(1, 'Something bad happened');
|
||||
|
||||
it('can handle a skipped test if it is trying to catch an exception', function () {
|
||||
expect(1)->toBe(2);
|
||||
})->throws(ExpectationFailedException::class)->skip('this test should be skipped')->only();
|
||||
|
||||
Reference in New Issue
Block a user