@@ -81,7 +81,7 @@ describe("App", () => {
8181 fireEvent . click ( deployButton ) ;
8282
8383 await waitFor ( ( ) => {
84- expect ( screen . getAllByText ( ' Succeeded' ) [ 0 ] ) . toBeInTheDocument ( ) ;
84+ expect ( screen . getAllByText ( " Succeeded" ) [ 0 ] ) . toBeInTheDocument ( ) ;
8585 } ) ;
8686
8787 expect ( container ) . toMatchSnapshot ( ) ;
@@ -100,7 +100,7 @@ describe("App", () => {
100100 fireEvent . click ( deployButton ) ;
101101
102102 await waitFor ( ( ) => {
103- expect ( screen . getAllByText ( ' Failed' ) [ 0 ] ) . toBeInTheDocument ( ) ;
103+ expect ( screen . getAllByText ( " Failed" ) [ 0 ] ) . toBeInTheDocument ( ) ;
104104 } ) ;
105105
106106 expect ( mockClient . deploymentOperations . listAtScope ) . not . toHaveBeenCalled ( ) ;
@@ -116,7 +116,7 @@ describe("App", () => {
116116 fireEvent . click ( validateButton ) ;
117117
118118 await waitFor ( ( ) => {
119- expect ( screen . getAllByText ( ' InvalidTemplate' ) [ 0 ] ) . toBeInTheDocument ( ) ;
119+ expect ( screen . getAllByText ( " InvalidTemplate" ) [ 0 ] ) . toBeInTheDocument ( ) ;
120120 } ) ;
121121
122122 expect ( container ) . toMatchSnapshot ( ) ;
@@ -131,7 +131,7 @@ describe("App", () => {
131131 fireEvent . click ( whatIfButton ) ;
132132
133133 await waitFor ( ( ) => {
134- expect ( screen . getAllByText ( ' Succeeded' ) [ 0 ] ) . toBeInTheDocument ( ) ;
134+ expect ( screen . getAllByText ( " Succeeded" ) [ 0 ] ) . toBeInTheDocument ( ) ;
135135 } ) ;
136136
137137 expect ( container ) . toMatchSnapshot ( ) ;
@@ -186,4 +186,4 @@ function getStateResultMessage() {
186186 return createGetStateResultMessage ( {
187187 scope : scope ,
188188 } ) ;
189- }
189+ }
0 commit comments