File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -149,24 +149,24 @@ jobs:
149149 CYPRESS_ncVersion : ${{ matrix.server-versions }}
150150 npm_package_name : ${{ env.APP_NAME }}
151151
152- - name : Print logs
152+ - name : Print logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
153153 if : always()
154154 run : |
155155 cat /tmp/requestlog
156156 cat data/nextcloud.log
157157
158- - name : Upload test failure screenshots
158+ - name : Upload test failure screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
159159 uses : actions/upload-artifact@v4
160160 if : failure()
161161 with :
162- name : Upload screenshots
162+ name : Upload screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
163163 path : apps/${{ env.APP_NAME }}/cypress/screenshots/
164164 retention-days : 5
165165
166- - name : Upload nextcloud logs
166+ - name : Upload nextcloud logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
167167 uses : actions/upload-artifact@v4
168168 if : failure()
169169 with :
170- name : Upload nextcloud log
170+ name : Upload nextcloud log ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
171171 path : data/nextcloud.log
172172 retention-days : 5
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ describe('Manage a table', () => {
3232 cy . contains ( 'button' , 'Create row' ) . should ( 'be.visible' )
3333 cy . contains ( 'h1' , 'to do list' ) . should ( 'be.visible' )
3434 cy . contains ( 'table th' , 'Task' ) . should ( 'exist' )
35- cy . contains ( '.paragraph-content ' , 'to Do List description' ) . should ( 'be.visible' )
35+ cy . contains ( '.text-editor__content p ' , 'to Do List description' ) . should ( 'be.visible' )
3636 } )
3737
3838 it ( 'Create with import' , ( ) => {
@@ -71,7 +71,7 @@ describe('Manage a table', () => {
7171
7272 cy . wait ( 10 ) . get ( '.toastify.toast-success' ) . should ( 'be.visible' )
7373 cy . get ( '.app-navigation__list' ) . contains ( 'ToDo list' ) . should ( 'exist' )
74- cy . contains ( '.paragraph-content ' , 'Updated ToDo List description' ) . should ( 'be.visible' )
74+ cy . contains ( '.text-editor__content p ' , 'Updated ToDo List description' ) . should ( 'be.visible' )
7575 } )
7676
7777 it ( 'Delete' , ( ) => {
You can’t perform that action at this time.
0 commit comments