()
| 24 | "executor.run('" + testPattern() + "');"; |
| 25 | |
| 26 | public static String testPattern() { |
| 27 | String pattern = System.getProperty("test.pattern"); |
| 28 | if (pattern == null) { |
| 29 | pattern = "**/*Spec.js"; |
| 30 | } |
| 31 | |
| 32 | return pattern; |
| 33 | } |
| 34 | |
| 35 | public static void main(String... args) throws InterruptedException { |
| 36 | TestRunner runner = new TestRunner(); |