10-04-2026

This commit is contained in:
Kevin Adametz 2026-04-10 17:18:17 +02:00
parent 4d6b4930b2
commit 4bb89aad8c
836 changed files with 52961 additions and 5950 deletions

View file

@ -0,0 +1,26 @@
<?php
declare(strict_types=1);
it('dev sitemap page loads successfully', function () {
$this->get('/dev/sitemap')
->assertSuccessful()
->assertSee('Dev Sitemap')
->assertSee('Live-Seiten')
->assertSee('Archiv');
});
it('dev immobilien v1 archive page loads successfully', function () {
$this->get('/dev/immobilien-v1')
->assertSuccessful();
});
it('dev interior v1 archive page loads successfully', function () {
$this->get('/dev/interior-v1')
->assertSuccessful();
});
it('dev partner v1 archive page loads successfully', function () {
$this->get('/dev/partner-v1')
->assertSuccessful();
});