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

税率の初期値が10%になったのでE2Eテストも対応 #4540

Merged
merged 1 commit into from
May 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions codeception/acceptance/EA07BasicinfoCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,15 @@ public function basicinfo_税率設定(\AcceptanceTester $I)

// 一覧
$I->see('税率設定', '#page_admin_setting_shop_tax > div.c-container > div.c-contentsArea > div.c-contentsArea__cols > div > div > div > div.card-header');
$I->see('8%', '#ex-tax_rule-1 > td.align-middle.text-right');
$I->see('10%', '#ex-tax_rule-1 > td.align-middle.text-right');

// 登録
$TaxManagePage
->入力_消費税率(1, '10')
->入力_消費税率(1, '8')
->入力_適用日(date('Y'), date('n'), date('j'))
->入力_適用時(date('G'), (int) date('i'))
->共通税率設定_登録();
$I->see('10%', $TaxManagePage->一覧_税率(2));
$I->see('8%', $TaxManagePage->一覧_税率(2));

// edit
$TaxManagePage
Expand Down