mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
Check on non named tests
This commit is contained in:
@ -63,6 +63,8 @@
|
|||||||
✓ lazy datasets with (1)
|
✓ lazy datasets with (1)
|
||||||
✓ lazy datasets with (2)
|
✓ lazy datasets with (2)
|
||||||
✓ lazy datasets did the job right
|
✓ lazy datasets did the job right
|
||||||
|
✓ interpolated (1) lazy datasets
|
||||||
|
✓ interpolated (2) lazy datasets
|
||||||
✓ eager datasets with (1)
|
✓ eager datasets with (1)
|
||||||
✓ eager datasets with (2)
|
✓ eager datasets with (2)
|
||||||
✓ eager datasets did the job right
|
✓ eager datasets did the job right
|
||||||
@ -1442,4 +1444,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, 21 skipped, 1032 passed (2517 assertions)
|
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 1034 passed (2519 assertions)
|
||||||
@ -61,6 +61,10 @@ test('lazy datasets did the job right', function () use ($state) {
|
|||||||
expect($state->text)->toBe('12');
|
expect($state->text)->toBe('12');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('interpolated :dataset lazy datasets', function ($text) {
|
||||||
|
expect(true)->toBeTrue();
|
||||||
|
})->with($datasets);
|
||||||
|
|
||||||
$state->text = '';
|
$state->text = '';
|
||||||
|
|
||||||
test('eager datasets', function ($text) use ($state, $datasets) {
|
test('eager datasets', function ($text) use ($state, $datasets) {
|
||||||
|
|||||||
@ -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: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1018 passed (2485 assertions)')
|
->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1020 passed (2487 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user