feat: allow editing of phone calls (#2134)

This commit is contained in:
Régis Freyd
2018-12-08 18:02:50 -05:00
committed by GitHub
parent 09b0d70375
commit 6f76405d49
32 changed files with 1079 additions and 455 deletions
@@ -32,7 +32,7 @@ class DocumentsControllerTest extends FeatureTestCase
'account_id' => $user->account_id,
]);
factory(Document::class, 100)->create([
factory(Document::class, 10)->create([
'account_id' => $user->account_id,
'contact_id' => $contact->id,
]);
@@ -48,7 +48,7 @@ class DocumentsControllerTest extends FeatureTestCase
]);
$this->assertCount(
100,
10,
$response->decodeResponseJson()['data']
);
}