From df0390134cbe6b5a6fac21f4718cb1e90f980150 Mon Sep 17 00:00:00 2001 From: EwelinaLasowy Date: Mon, 17 Jan 2022 11:02:09 +0100 Subject: [PATCH] #4 - wip --- tests/Feature/UserTest.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/Feature/UserTest.php diff --git a/tests/Feature/UserTest.php b/tests/Feature/UserTest.php new file mode 100644 index 0000000..595d5b6 --- /dev/null +++ b/tests/Feature/UserTest.php @@ -0,0 +1,23 @@ +create(); + + $this->actingAs($user) + ->get("/users") + ->assertOk(); + } +}