Fix test create template

This commit is contained in:
JhumanJ 2022-11-16 15:57:10 +01:00
parent 88812776db
commit a192ca35f7
3 changed files with 11 additions and 8 deletions

View File

@ -32,7 +32,7 @@
<server name="MAIL_FROM_NAME" value="NotionForms"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
<server name="TEMPLATE_EDITOR_EMAILS" value="admin@opnform.com"/>
<server name="JWT_SECRET" value="9K6whOetAFaokQgSIdbMQZuJuDV5uS2Y"/>
</php>
</phpunit>

View File

@ -1,7 +1,10 @@
<?php
it('can create template', function () {
$user = $this->actingAsUser();
$user = $this->createUser([
'email' => 'admin@opnform.com'
]);
$this->actingAsUser($user);
// Create Form
$workspace = $this->createUserWorkspace($user);

View File

@ -135,9 +135,9 @@ trait TestHelpers
return $form;
}
public function createUser()
public function createUser(array $data = [])
{
return \App\Models\User::factory()->create();
return \App\Models\User::factory()->create($data);
}
public function createProUser()