File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ describe('NeoDash E2E Tests', () => {
245245 cy . get ( 'main .react-grid-item:eq(2) .MuiCardContent-root h1' , { timeout : 45000 } ) . should ( 'have.text' , 'Hello' ) ;
246246 } ) ;
247247
248- it . skip ( 'creates a form report' , ( ) => {
248+ it . only ( 'creates a form report' , ( ) => {
249249 enableFormsExtension ( ) ;
250250 cy . checkInitialState ( ) ;
251251 createReportOfType ( 'Form' , formCypherQuery , true , false ) ;
@@ -261,8 +261,10 @@ describe('NeoDash E2E Tests', () => {
261261
262262 cy . get ( 'main .react-grid-item:eq(2) button[aria-label="run"]' ) . scrollIntoView ( ) . should ( 'be.visible' ) . click ( ) ;
263263 cy . wait ( 500 ) ;
264+ cy . get ( '#form-submit' ) . should ( 'be.disabled' ) ;
264265 cy . get ( '#autocomplete' ) . type ( 'The Matrix' ) ;
265266 cy . get ( '#autocomplete-option-0' ) . click ( ) ;
267+ cy . get ( '#form-submit' ) . should ( 'not.be.disabled' ) ;
266268 cy . get ( '#form-submit' ) . click ( ) ;
267269 cy . wait ( 500 ) ;
268270 cy . get ( '.form-submitted-message' ) . should ( 'have.text' , 'Form Submitted.Reset Form' ) ;
You can’t perform that action at this time.
0 commit comments