File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-22.04
1414 strategy :
1515 matrix :
16- php : [ '8.2', '8.3', '8.4', '8.5' ]
16+ php : [ '8.5' ]
1717 TYPO3 : [ '13', '14' ]
1818 steps :
1919 - name : Checkout
2222 - name : Install testing system
2323 run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s composerInstall
2424
25- - name : Composer validate
26- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s composerValidate
27-
28- - name : Lint PHP
29- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s lint
30-
31- - name : CGL
32- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s cgl -n
33-
34- - name : phpstan
35- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s phpstan
36-
37- - name : Unit Tests
38- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s unit
39-
40- - name : Functional Tests
41- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional -- --do-not-fail-on-deprecation --exclude-group v14-only
42- if : matrix.TYPO3 == '13'
43-
44- - name : Functional Tests 14
45- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional
46- if : matrix.TYPO3 == '14'
47-
4825 - name : Acceptance Tests
49- run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptance -- --fail-fast
26+ run : Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptanceComposer -- --fail-fast
5027 - name : Archive acceptance tests results
5128 uses : actions/upload-artifact@v6
5229 if : always()
Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ public function canCreateContentElementInTranslatedContainerInFreeMode(BackendTe
214214 $ uid = 104 ;
215215
216216 $ selector = '#element-tt_content- ' . $ uid . ' div:nth-child(1) div:nth-child(2) ' ;
217+ $ I ->wait (3 );
217218 $ I ->dontSee ('german ' , $ selector );
218219 $ dataColPos = $ I ->getDataColPos ($ uid , 200 );
219220 $ colPosSelector = '#element-tt_content- ' . $ uid . ' [data-colpos=" ' . $ dataColPos . '"] ' ;
You can’t perform that action at this time.
0 commit comments