Phase 2: Implement Domain & Mailbox persistence, Analytics, and fix pagination issues
This commit is contained in:
11
tests/Feature/DomainFeatureTest.php
Normal file
11
tests/Feature/DomainFeatureTest.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use App\Models\Domain;
|
||||
|
||||
test('domain hash is generated in feature test', function () {
|
||||
$domain = Domain::factory()->create([
|
||||
'name' => 'feature-test-'.uniqid().'.com',
|
||||
]);
|
||||
|
||||
expect($domain->domain_hash)->not->toBeNull();
|
||||
});
|
||||
Reference in New Issue
Block a user