File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
angular/test/test-app/e2e/src
core/src/components/select Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ describe('Form', () => {
39
39
cy . get ( 'ion-input.required' ) . invoke ( 'prop' , 'value' , 'Some value' ) ;
40
40
testStatus ( 'INVALID' ) ;
41
41
42
+ // TODO: FW-1160 - Remove when v7 is released
43
+ cy . wait ( 300 ) ;
44
+
42
45
cy . get ( 'ion-select' ) . invoke ( 'prop' , 'value' , 'nes' ) ;
43
46
testStatus ( 'INVALID' ) ;
44
47
Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ export class Select implements ComponentInterface {
150
150
@Watch ( 'value' )
151
151
valueChanged ( ) {
152
152
this . emitStyle ( ) ;
153
+ // TODO: FW-1160 - Remove the `didInit` property when ionChange behavior is changed in v7.
153
154
if ( this . didInit ) {
154
155
this . ionChange . emit ( {
155
156
value : this . value ,
You can’t perform that action at this time.
0 commit comments