mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 23:42:09 +05:30
11 lines
262 B
PHP
11 lines
262 B
PHP
<?php
|
|
use tests\codeception\api\AcceptanceTester;
|
|
use tests\codeception\api\_pages\AboutPage;
|
|
|
|
/* @var $scenario Codeception\Scenario */
|
|
|
|
$I = new AcceptanceTester($scenario);
|
|
$I->wantTo('ensure that about works');
|
|
AboutPage::openBy($I);
|
|
$I->see('About', 'h1');
|