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', () => {
245
245
cy . get ( 'main .react-grid-item:eq(2) .MuiCardContent-root h1' , { timeout : 45000 } ) . should ( 'have.text' , 'Hello' ) ;
246
246
} ) ;
247
247
248
- it . skip ( 'creates a form report' , ( ) => {
248
+ it . only ( 'creates a form report' , ( ) => {
249
249
enableFormsExtension ( ) ;
250
250
cy . checkInitialState ( ) ;
251
251
createReportOfType ( 'Form' , formCypherQuery , true , false ) ;
@@ -261,8 +261,10 @@ describe('NeoDash E2E Tests', () => {
261
261
262
262
cy . get ( 'main .react-grid-item:eq(2) button[aria-label="run"]' ) . scrollIntoView ( ) . should ( 'be.visible' ) . click ( ) ;
263
263
cy . wait ( 500 ) ;
264
+ cy . get ( '#form-submit' ) . should ( 'be.disabled' ) ;
264
265
cy . get ( '#autocomplete' ) . type ( 'The Matrix' ) ;
265
266
cy . get ( '#autocomplete-option-0' ) . click ( ) ;
267
+ cy . get ( '#form-submit' ) . should ( 'not.be.disabled' ) ;
266
268
cy . get ( '#form-submit' ) . click ( ) ;
267
269
cy . wait ( 500 ) ;
268
270
cy . get ( '.form-submitted-message' ) . should ( 'have.text' , 'Form Submitted.Reset Form' ) ;
You can’t perform that action at this time.
0 commit comments