22 lines
569 B
PHP
22 lines
569 B
PHP
<?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');
|
|
});
|