Disable remaining JavaScript-based tests on Java 15+

This commit disables all remaining JavaScript-based tests on Java 15 or
higher since the Nashorn JavaScript engine is no longer part of the JDK.
This commit is contained in:
Sam Brannen
2020-04-28 17:22:22 +02:00
parent 71ed8143a1
commit c3f439417e
5 changed files with 18 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ import static org.junit.jupiter.api.condition.JRE.JAVA_15;
* @author Juergen Hoeller
* @since 4.2
*/
@DisabledForJreRange(min = JAVA_15)
@DisabledForJreRange(min = JAVA_15) // Nashorn JavaScript engine removed in Java 15
public class StandardScriptFactoryTests {
@Test