@@ -102,7 +102,7 @@ function ReportActionComposeWrapper() {
102
102
}
103
103
const mockEvent = { preventDefault : jest . fn ( ) } ;
104
104
105
- test ( '[ReportActionCompose] should render Composer with text input interactions' , async ( ) => {
105
+ test . skip ( '[ReportActionCompose] should render Composer with text input interactions' , async ( ) => {
106
106
const scenario = async ( ) => {
107
107
// Query for the composer
108
108
const composer = await screen . findByTestId ( 'composer' ) ;
@@ -121,7 +121,7 @@ test('[ReportActionCompose] should render Composer with text input interactions'
121
121
return waitForBatchedUpdates ( ) . then ( ( ) => measurePerformance ( < ReportActionComposeWrapper /> , { scenario} ) ) ;
122
122
} ) ;
123
123
124
- test ( '[ReportActionCompose] should press add attachemnt button' , async ( ) => {
124
+ test . skip ( '[ReportActionCompose] should press add attachemnt button' , async ( ) => {
125
125
const scenario = async ( ) => {
126
126
// Query for the attachment button
127
127
const hintAttachmentButtonText = Localize . translateLocal ( 'common.create' ) ;
@@ -133,7 +133,7 @@ test('[ReportActionCompose] should press add attachemnt button', async () => {
133
133
return waitForBatchedUpdates ( ) . then ( ( ) => measurePerformance ( < ReportActionComposeWrapper /> , { scenario} ) ) ;
134
134
} ) ;
135
135
136
- test ( '[ReportActionCompose] should press add emoji button' , async ( ) => {
136
+ test . skip ( '[ReportActionCompose] should press add emoji button' , async ( ) => {
137
137
const scenario = async ( ) => {
138
138
// Query for the emoji button
139
139
const hintEmojiButtonText = Localize . translateLocal ( 'reportActionCompose.emoji' ) ;
@@ -145,7 +145,7 @@ test('[ReportActionCompose] should press add emoji button', async () => {
145
145
return waitForBatchedUpdates ( ) . then ( ( ) => measurePerformance ( < ReportActionComposeWrapper /> , { scenario} ) ) ;
146
146
} ) ;
147
147
148
- test ( '[ReportActionCompose] should press send message button' , async ( ) => {
148
+ test . skip ( '[ReportActionCompose] should press send message button' , async ( ) => {
149
149
const scenario = async ( ) => {
150
150
// Query for the send button
151
151
const hintSendButtonText = Localize . translateLocal ( 'common.send' ) ;
@@ -157,7 +157,7 @@ test('[ReportActionCompose] should press send message button', async () => {
157
157
return waitForBatchedUpdates ( ) . then ( ( ) => measurePerformance ( < ReportActionComposeWrapper /> , { scenario} ) ) ;
158
158
} ) ;
159
159
160
- test ( '[ReportActionCompose] render composer with attachement modal interactions' , async ( ) => {
160
+ test . skip ( '[ReportActionCompose] render composer with attachement modal interactions' , async ( ) => {
161
161
const scenario = async ( ) => {
162
162
const hintAddAttachmentButtonText = Localize . translateLocal ( 'reportActionCompose.addAttachment' ) ;
163
163
const hintAssignTaskButtonText = Localize . translateLocal ( 'newTaskPage.assignTask' ) ;
0 commit comments