11 lines
278 B
PHP
11 lines
278 B
PHP
<?php
|
|
|
|
test('an user can add project', function () {
|
|
$user = \Laravel\Sanctum\Sanctum::actingAs(\App\Models\User::factory()->create());
|
|
|
|
$response = $this->post('api/projects', [
|
|
'name' => 'Test',
|
|
'description' => 'Test description',
|
|
]);
|
|
})->todo();
|