Files
pest/tests/Pest.php
2021-04-06 19:32:49 -05:00

19 lines
326 B
PHP

<?php
uses()->group('integration')->in('Visual');
uses()
->beforeEach(function () {
$this->baz = 0;
})
// ->beforeAll(function () {
// dump(0);
// })
->afterEach(function () {
$this->ith = 0;
})
// ->afterAll(function () {
// dump(0);
// })
->in('Hooks');