diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index 58d988ac..49efa6bb 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -1754,8 +1754,51 @@ ✓ it alerts users about tests with arguments but no input ✓ it can return an array of all test suite filenames + PASS Tests\Visual\BeforeEachTestName + ✓ description + ✓ latest description + + PASS Tests\Visual\Collision + ✓ collision with (['']) + + PASS Tests\Visual\Help + ✓ visual snapshot of help command output + + WARN Tests\Visual\JUnit + ✓ junit output + - junit with parallel → Not working yet + + PASS Tests\Visual\Parallel + ✓ parallel + ✓ a parallel test can extend another test with same name + ✓ parallel reports invalid datasets as failures + + PASS Tests\Visual\ParallelNestedDatasets + ✓ parallel loads nested datasets from nested directories + + PASS Tests\Visual\SingleTestOrDirectory + ✓ allows to run a single test + ✓ allows to run a directory + ✓ it disable decorating printer when colors is set to never + + WARN Tests\Visual\Success + - visual snapshot of test suite on success + + WARN Tests\Visual\TeamCity + - visual snapshot of team city with ('Failure.php') + - visual snapshot of team city with ('SuccessOnly.php') + + WARN Tests\Visual\Todo + - todos + - todos in parallel + - todo + - todo in parallel + + WARN Tests\Visual\Version + - visual snapshot of help command output + PASS Testsexternal\Features\Expect\toMatchSnapshot ✓ pass with dataset with ('my-datas-set-value') ✓ within describe → pass with dataset with ('my-datas-set-value') - Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 39 todos, 26 skipped, 1191 passed (2802 assertions) \ No newline at end of file + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 39 todos, 35 skipped, 1203 passed (2835 assertions) \ No newline at end of file diff --git a/tests/Visual/Success.php b/tests/Visual/Success.php index 20ebd1d0..7906378f 100644 --- a/tests/Visual/Success.php +++ b/tests/Visual/Success.php @@ -12,9 +12,9 @@ test('visual snapshot of test suite on success', function () { $output = function () use ($testsPath) { $process = (new Process( - ['php', '-d', 'memory_limit=512M', 'bin/pest', '--exclude-group=integration'], + ['php', '-d', 'memory_limit=256M', 'bin/pest'], dirname($testsPath), - ['EXCLUDE' => 'integration', 'REBUILD_SNAPSHOTS' => false, 'PARATEST' => 0, 'COLLISION_PRINTER' => 'DefaultPrinter', 'COLLISION_IGNORE_DURATION' => 'true'], + ['EXCLUDE' => 'integration', '--exclude-group' => 'integration', 'REBUILD_SNAPSHOTS' => false, 'PARATEST' => 0, 'COLLISION_PRINTER' => 'DefaultPrinter', 'COLLISION_IGNORE_DURATION' => 'true'], )); $process->run();