-
Notifications
You must be signed in to change notification settings - Fork 17
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
3.0.18に合わせたcodeceptionの修正 #157
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.envの修正はPRに含めないで下さい。
申し訳ありません、修正します。 |
@@ -7,42 +7,42 @@ services: | |||
- docker | |||
|
|||
env: | |||
## Firefox, PostgreSQL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
すべてchromeになってしまっているので、firefoxはallow_failuresで残しておいて下さい。
tests/acceptance/EA04OrderCest.php
Outdated
|
||
codecept_debug($I->grabTextFrom('#template-change')); | ||
|
||
$I->selectOption(['id' => 'template-change'], 'ご注文ありがとうございます'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selectOption
の第二引数は値だけだと選択するのに時間がかかるので ['id' => 'value']
の形でお願いします。
tests/acceptance/EA04OrderCest.php
Outdated
@@ -257,7 +260,7 @@ public function order_一括メール通知(\AcceptanceTester $I) | |||
->一覧_全選択() | |||
->メール一括通知(); | |||
|
|||
$I->selectOption(['id' => 'template-change'], ['1' => '注文受付メール']); | |||
$I->selectOption(['id' => 'template-change'], 'ご注文ありがとうございます'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
selectOption
の第二引数は値だけだと選択するのに時間がかかるので ['id' => 'value']
の形でお願いします。
No description provided.