Files
hdk-skeleton/tests/Feature/ExampleTest.php
2023-12-18 15:54:08 +08:00

10 lines
187 B
PHP

<?php
test('example', function () {
$resp = $this->get('/');
expect($resp['code'])->toBe(200)
->and($resp['data'])->toBe([
'method' => 'GET',
]);
});