10-04-2026
This commit is contained in:
parent
4d6b4930b2
commit
4bb89aad8c
836 changed files with 52961 additions and 5950 deletions
22
tests/Feature/AnnouncementBarTest.php
Normal file
22
tests/Feature/AnnouncementBarTest.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
it('announcement bar is visible on homepage', function () {
|
||||
$this->get('/')
|
||||
->assertSuccessful()
|
||||
->assertSee('Azizi Creek Views 4')
|
||||
->assertSee('NEW LAUNCH');
|
||||
});
|
||||
|
||||
it('announcement bar is visible on immobilien page', function () {
|
||||
$this->get('/immobilien')
|
||||
->assertSuccessful()
|
||||
->assertSee('Off-Market-Projekt');
|
||||
});
|
||||
|
||||
it('announcement bar links to project expose', function () {
|
||||
$this->get('/')
|
||||
->assertSuccessful()
|
||||
->assertSee('/immobilien/azizi-creek-views-4');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue