b2in/tests/Feature/AboutPageTest.php
2026-04-10 17:18:17 +02:00

15 lines
339 B
PHP

<?php
declare(strict_types=1);
it('about page loads successfully', function () {
$this->get('/about')
->assertSuccessful()
->assertSee('Über B2in');
});
it('about page shows image break section', function () {
$this->get('/about')
->assertSuccessful()
->assertSee('best-of-two-worlds.jpg');
});