diff --git a/tests/Feature/ClientTest.php b/tests/Feature/ClientTest.php new file mode 100644 index 000000000000..f105402e0001 --- /dev/null +++ b/tests/Feature/ClientTest.php @@ -0,0 +1,53 @@ + $faker->firstName, + 'last_name' => $faker->lastName, + 'email' => $faker->unique()->safeEmail, + 'password' => 'ALongAndBrilliantPassword123' + ]; + + $this->user = CreateAccount::dispatchNow($data); + } + + + /** + * A valid user can be logged in. + * + * @return void + */ + public function testUserCreated() + { + $this->assertTrue($user); + } + + + +}