File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
apps/report/src/components
packages/web-integration/src/common Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,11 @@ const SideItem = (props: {
67
67
68
68
const statusIcon = ( ( ) => {
69
69
const isFinished = task . status === 'finished' ;
70
- const isAssertFailed = isFinished && task . output === false ;
70
+ const isAssertionFailed =
71
+ isFinished && task . subType === 'Assert' && task . output === false ;
71
72
const hasError = isFinished && ( task . error || task . errorMessage ) ;
72
73
73
- if ( isAssertFailed ) return iconForStatus ( 'failed' ) ;
74
+ if ( isAssertionFailed ) return iconForStatus ( 'failed' ) ;
74
75
75
76
if ( hasError ) return iconForStatus ( 'finishedWithWarning' ) ;
76
77
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export interface AndroidDevicePage extends AbstractPage {
49
49
50
50
export type AndroidDeviceInputOpt = {
51
51
autoDismissKeyboard ?: boolean ;
52
- hideKeyboardStrategy ?: 'esc-first' | 'back-first' ;
52
+ keyboardDismissStrategy ?: 'esc-first' | 'back-first' ;
53
53
} ;
54
54
55
55
export type WebPage =
You can’t perform that action at this time.
0 commit comments