Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip や incomplete とマークされているテストの一部を修正 #5097

Merged
merged 3 commits into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions codeception/acceptance/EA07BasicinfoCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function basicinfo_支払方法入れ替え(AcceptanceTester $I)

public function basicinfo_支払方法登録(AcceptanceTester $I)
{
$I->getScenario()->skip('EA0705-UC01-T01 支払方法 登録');
$I->getScenario()->incomplete('EA0705-UC01-T01 支払方法 登録');
$I->wantTo('EA0705-UC01-T01 支払方法 登録');

// 表示
Expand All @@ -105,7 +105,7 @@ public function basicinfo_支払方法登録(AcceptanceTester $I)

public function basicinfo_支払方法編集(AcceptanceTester $I)
{
$I->getScenario()->skip('EA0705-UC01-T01 支払方法 登録');
$I->getScenario()->incomplete('EA0705-UC01-T01 支払方法 登録');
$I->wantTo('EA0705-UC02-T01 支払方法 編集');

// 表示
Expand Down
2 changes: 1 addition & 1 deletion codeception/acceptance/EA08SysteminfoCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public function systeminfo_セキュリティ管理SSL(AcceptanceTester $I)
{
$I->wantTo('EA0804-UC01-T04 セキュリティ管理 - SSL強制');

$I->getScenario()->skip('このテストを通すと以降のテストが通らなくなってしまっているので一時的にスキップ');
$I->getScenario()->incomplete('このテストを通すと以降のテストが通らなくなってしまっているので一時的にスキップ');

$httpBaseUrl = $I->getBaseUrl();
$I->amOnUrl($httpBaseUrl);
Expand Down
1 change: 1 addition & 0 deletions codeception/acceptance/EF02ProductCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public function product_商品一覧初期表示(AcceptanceTester $I)

public function product_商品一覧ヘッダ以外のカテゴリリンク(AcceptanceTester $I)
{
$I->getScenario()->incomplete('テスト項目を要確認');
$I->wantTo('EF0201-UC01-T02 商品一覧ページ ヘッダ以外のカテゴリリンク');
$I->amOnPage('/');

Expand Down