Skip to content

Commit 0a43c42

Browse files
luciandexNaktibalda
authored andcommitted
Added seertions in RouteCest.php
1 parent 6e97b4f commit 0a43c42

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/Functional/RoutingCest.php

+2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ public function seeCurrentActionIs(FunctionalTester $I)
2525
{
2626
$I->amOnPage('/test-value');
2727
$I->seeCurrentActionIs(TestController::class. '@testValue');
28+
$I->see('Test value is: ' . config('test_value'));
2829
}
2930

3031
public function seeCurrentRouteIs(FunctionalTester $I)
3132
{
3233
$I->amOnAction(TestController::class. '@testValue');
3334
$I->seeCurrentRouteIs('test-value');
35+
$I->see('Test value is: ' . config('test_value'));
3436
}
3537
}

0 commit comments

Comments
 (0)