Open turkeylurkey opened 2 months ago
From the build on my fork:
Windows: 148 tests completed, 1 failed, 16 skipped
The one failure is Hover on text: NONE did not trigger a pop-up window
, a known failure #945
Build on main still running.
From the build on my fork:
Mac: 123 tests completed, 3 failed, 12 skipped
All three are initialization errors so no videos available. Similar to #971
Build on main still running.
Updated two test cases to focus on the report generator.
Existing test case
MavenSingleModMPProjectTest
already tests the integration and unit test reports. We delete the Maven cache of the Maven plugins so that they must be downloaded when used. The report generator plugin is not called out in the pom so when we run the tests dev mode downloads the latest report generator, 3.5.0. The test also deletes existing reports before it begins so we validate that the 3.5 test report is generated and the 3.4 is not.Existing test case
MavenSingleModMPSIDProjectTest
also tests the reports. Again we delete the Maven cache and the existing test reports. This test case copies all the files into a new directory so we can safely modify pom.xml to specify Maven report generator 3.4.0 (this will all be deleted afterwards). When tests are run we validate that the 3.4 location was used and the 3.5 location is not.Fixes #940