faker = \Faker\Factory::create(); Model::reguard(); if (config('ninja.testvars.travis') !== false) { $this->markTestSkipped('Skip test for CI Testing'); } } public function testApiAccountCreation() { $data = [ 'first_name' => $this->faker->firstName, 'last_name' => $this->faker->lastName, 'name' => $this->faker->company, 'email' => $this->faker->unique()->safeEmail, 'password' => 'ALongAndBrilliantPassword123', 'privacy_policy' => 1, 'terms_of_service' => 1 ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), ])->post('/api/v1/signup?include=account', $data); $response->assertStatus(200); } }