GREYConfiguration
EarlGrey はデフォルトで CALayer アニメーションを 10 秒以上切り捨てるという以下の API を見ました-
/**
* Configuration for setting max allowable animation duration (in seconds) for any CALayer based
* animation. Animations exceeding the specified time will have their duration truncated to value
* specified by this config.
*
* Accepted values: @c double (negative values shouldn't be used)
* Default value: 10.0
*/
GREY_EXTERN NSString *const kGREYConfigKeyCALayerMaxAnimationDuration;
私は、そのようなアニメーションが多数進行中の小さなゲームアプリを開発しています。UI テストに必要なアニメーションを有効にすると、テストの実行に時間がかかることに気付きました。を使用して、アプリ全体のアニメーション速度を変更できることを知っていUIApplication.sharedApplication.keyWindow.layer.speed
ます。EarlGrey テスト用にのみ変更する方法はありますか?