mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
release: v2.16.1
This commit is contained in:
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '2.16.0';
|
return '2.16.1';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.16.0.
|
Pest Testing Framework 2.16.1.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.16.0.
|
Pest Testing Framework 2.16.1.
|
||||||
|
|
||||||
|
|||||||
@ -638,6 +638,7 @@
|
|||||||
|
|
||||||
PASS Tests\Features\Expect\toHaveCount
|
PASS Tests\Features\Expect\toHaveCount
|
||||||
✓ pass
|
✓ pass
|
||||||
|
✓ failures with invalid type
|
||||||
✓ failures
|
✓ failures
|
||||||
✓ failures with message
|
✓ failures with message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
@ -722,6 +723,13 @@
|
|||||||
✓ failures
|
✓ failures
|
||||||
✓ failures with message
|
✓ failures with message
|
||||||
✓ failures with message and Any matcher
|
✓ failures with message and Any matcher
|
||||||
|
✓ not failures
|
||||||
|
|
||||||
|
PASS Tests\Features\Expect\toHaveSameSize
|
||||||
|
✓ failures with wrong type
|
||||||
|
✓ pass
|
||||||
|
✓ failures
|
||||||
|
✓ failures with message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
|
|
||||||
PASS Tests\Features\Expect\toHaveSnakeCaseKeys
|
PASS Tests\Features\Expect\toHaveSnakeCaseKeys
|
||||||
@ -1007,6 +1015,9 @@
|
|||||||
✓ uses dataset with (1)
|
✓ uses dataset with (1)
|
||||||
✓ uses dataset with (2)
|
✓ uses dataset with (2)
|
||||||
✓ the right dataset is taken
|
✓ the right dataset is taken
|
||||||
|
✓ it can see datasets defined in Pest.php file with ('A')
|
||||||
|
✓ it can see datasets defined in Pest.php file with ('B')
|
||||||
|
✓ Pest.php dataset is taken
|
||||||
|
|
||||||
WARN Tests\Features\Skip
|
WARN Tests\Features\Skip
|
||||||
✓ it do not skips
|
✓ it do not skips
|
||||||
@ -1296,4 +1307,4 @@
|
|||||||
WARN Tests\Visual\Version
|
WARN Tests\Visual\Version
|
||||||
- visual snapshot of help command output
|
- visual snapshot of help command output
|
||||||
|
|
||||||
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 916 passed (2190 assertions)
|
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 925 passed (2204 assertions)
|
||||||
@ -16,7 +16,7 @@ $run = function () {
|
|||||||
|
|
||||||
test('parallel', function () use ($run) {
|
test('parallel', function () use ($run) {
|
||||||
expect($run('--exclude-group=integration'))
|
expect($run('--exclude-group=integration'))
|
||||||
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 905 passed (2175 assertions)')
|
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 914 passed (2189 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user