@@ -34,7 +34,7 @@ describe("[Unit] ElementAssertion.test.ts", () => {
34
34
. toHaveMessage ( "Expected element <TextInput ... /> to be disabled." ) ;
35
35
expect ( ( ) => test . not . toBeEnabled ( ) )
36
36
. toThrowError ( AssertionError )
37
- . toHaveMessage ( "Expected element <TextInput ... /> to NOT be enabled." ) ;
37
+ . toHaveMessage ( "Expected element <TextInput ... /> NOT to be enabled." ) ;
38
38
} ) ;
39
39
} ) ;
40
40
} ) ;
@@ -59,7 +59,7 @@ describe("[Unit] ElementAssertion.test.ts", () => {
59
59
. toHaveMessage ( "Expected element <View ... /> to be enabled." ) ;
60
60
expect ( ( ) => parent . not . toBeDisabled ( ) )
61
61
. toThrowError ( AssertionError )
62
- . toHaveMessage ( "Expected element <View ... /> to NOT be disabled." ) ;
62
+ . toHaveMessage ( "Expected element <View ... /> NOT to be disabled." ) ;
63
63
} ) ;
64
64
} ) ;
65
65
@@ -83,13 +83,13 @@ describe("[Unit] ElementAssertion.test.ts", () => {
83
83
. toHaveMessage ( "Expected element <View ... /> to be disabled." ) ;
84
84
expect ( ( ) => parent . not . toBeEnabled ( ) )
85
85
. toThrowError ( AssertionError )
86
- . toHaveMessage ( "Expected element <View ... /> to NOT be enabled." ) ;
86
+ . toHaveMessage ( "Expected element <View ... /> NOT to be enabled." ) ;
87
87
expect ( ( ) => child . toBeDisabled ( ) )
88
88
. toThrowError ( AssertionError )
89
89
. toHaveMessage ( "Expected element <View ... /> to be disabled." ) ;
90
90
expect ( ( ) => child . not . toBeEnabled ( ) )
91
91
. toThrowError ( AssertionError )
92
- . toHaveMessage ( "Expected element <View ... /> to NOT be enabled." ) ;
92
+ . toHaveMessage ( "Expected element <View ... /> NOT to be enabled." ) ;
93
93
} ) ;
94
94
} ) ;
95
95
} ) ;
@@ -114,7 +114,7 @@ describe("[Unit] ElementAssertion.test.ts", () => {
114
114
. toHaveMessage ( "Expected element <View ... /> to be enabled." ) ;
115
115
expect ( ( ) => child . not . toBeDisabled ( ) )
116
116
. toThrowError ( AssertionError )
117
- . toHaveMessage ( "Expected element <View ... /> to NOT be disabled." ) ;
117
+ . toHaveMessage ( "Expected element <View ... /> NOT to be disabled." ) ;
118
118
} ) ;
119
119
120
120
it ( "returns error for parent element" , ( ) => {
@@ -124,7 +124,7 @@ describe("[Unit] ElementAssertion.test.ts", () => {
124
124
. toHaveMessage ( "Expected element <View ... /> to be disabled." ) ;
125
125
expect ( ( ) => parent . not . toBeEnabled ( ) )
126
126
. toThrowError ( AssertionError )
127
- . toHaveMessage ( "Expected element <View ... /> to NOT be enabled." ) ;
127
+ . toHaveMessage ( "Expected element <View ... /> NOT to be enabled." ) ;
128
128
} ) ;
129
129
} ) ;
130
130
} ) ;
0 commit comments