You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
431 B
18 lines
431 B
<?php
|
|
|
|
namespace Tests\Unit\UI\Support;
|
|
|
|
use App\UI\Support\LayoutState;
|
|
use Tests\TestCase;
|
|
|
|
test('it can set and get breadcrumbs', function () {
|
|
$layoutState = new LayoutState();
|
|
$breadcrumbs = [
|
|
['label' => 'Home', 'url' => '/'],
|
|
['label' => 'Dashboard', 'url' => '/dashboard'],
|
|
];
|
|
|
|
$layoutState->setBreadcrumbs($breadcrumbs);
|
|
|
|
expect($layoutState->getBreadcrumbs())->toBe($breadcrumbs);
|
|
});
|
|
|