diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index eae1f6cc..57e655aa 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -49,15 +49,13 @@ ✓ it creates unique test case names with ('Name 1', Pest\Plugin Object (), true) #3 ✓ it creates unique test case names - count - WARN Tests\Features\Depends + PASS Tests\Features\Depends ✓ first ✓ second ✓ depends ✓ depends with ...params ✓ depends with defined arguments ✓ depends run test only once - s incomplete → incomplete - w depends on incomplete → This test depends on "P\Tests\Features\Depends::incomplete" which does not exist. PASS Tests\Features\Exceptions ✓ it gives access the the underlying expectException @@ -161,6 +159,5 @@ WARN Tests\Visual\Success s visual snapshot of test suite on success - Tests: 1 warnings, 7 skipped, 85 passed - Time: 2.65s - + Tests: 6 skipped, 92 passed + Time: 3.40s diff --git a/tests/Features/Depends.php b/tests/Features/Depends.php index 9a46034c..0e7ed5ea 100644 --- a/tests/Features/Depends.php +++ b/tests/Features/Depends.php @@ -38,7 +38,3 @@ test('depends with defined arguments', function (string $first, string $second) test('depends run test only once', function () use (&$runCounter) { assertEquals(2, $runCounter); })->depends('first', 'second'); - -test('incomplete')->skip('incomplete'); - -test('depends on incomplete')->depends('incomplete')->doesNotPerformAssertions();