mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
feat: allows to use test calls on before each calls
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
beforeEach()->expect(true)->toBeTrue();
|
||||
|
||||
test('runs 1', function () {
|
||||
// This test did performs assertions...
|
||||
});
|
||||
|
||||
test('runs 2', function () {
|
||||
// This test did performs assertions...
|
||||
});
|
||||
|
||||
test('runs 3', function () {
|
||||
// This test did performs assertions...
|
||||
});
|
||||
Reference in New Issue
Block a user