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