for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use yii\helpers\Url;
class HomeCest
{
public function checkHome(AcceptanceTester $I)
$I->amOnPage(Url::toRoute('/'));
$I->see('Congratulation!');
}