mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 23:42:09 +05:30
13 lines
310 B
PHP
13 lines
310 B
PHP
<?php
|
|
use tests\codeception\api\AcceptanceTester;
|
|
|
|
/* @var $scenario Codeception\Scenario */
|
|
|
|
$I = new AcceptanceTester($scenario);
|
|
$I->wantTo('ensure that home page works');
|
|
$I->amOnPage(Yii::$app->homeUrl);
|
|
$I->see('My Company');
|
|
$I->seeLink('About');
|
|
$I->click('About');
|
|
$I->see('This is the About page.');
|