release: v2.10.1

This commit is contained in:
Nuno Maduro
2023-07-31 11:58:13 +01:00
parent 6820d8b7aa
commit 4de70da0a0
6 changed files with 23 additions and 5 deletions

View File

@ -1,5 +1,5 @@
Pest Testing Framework 2.10.0.
Pest Testing Framework 2.10.1.
USAGE: pest <file> [options]

View File

@ -1,3 +1,3 @@
Pest Testing Framework 2.10.0.
Pest Testing Framework 2.10.1.

View File

@ -629,6 +629,12 @@
✓ failures with custom message
✓ not failures
PASS Tests\Features\Expect\toHavePrefix
✓ missing prefix
✓ has prefix
✓ opposite missing prefix
✓ opposite has prefix
PASS Tests\Features\Expect\toHaveProperties
✓ pass
✓ failures
@ -642,6 +648,12 @@
✓ failures with message and Any matcher
✓ not failures
PASS Tests\Features\Expect\toHaveSuffix
✓ missing suffix
✓ has suffix
✓ opposite missing suffix
✓ opposite has suffix
PASS Tests\Features\Expect\toMatch
✓ pass
✓ failures
@ -1174,4 +1186,4 @@
WARN Tests\Visual\Version
- visual snapshot of help command output
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 830 passed (1927 assertions)
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 19 skipped, 838 passed (1939 assertions)

View File

@ -16,7 +16,7 @@ $run = function () {
test('parallel', function () use ($run) {
expect($run('--exclude-group=integration'))
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 819 passed (1912 assertions)')
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 15 skipped, 827 passed (1924 assertions)')
->toContain('Parallel: 3 processes');
})->skipOnWindows();