File tree 1 file changed +1
-22
lines changed
seleniumJSEnv/src/test/scala/org/scalajs/jsenv/selenium
1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change @@ -10,28 +10,7 @@ import org.junit.runners.Suite
10
10
import org .junit .runner .manipulation .Filter
11
11
import org .junit .runner .Description
12
12
13
- @ RunWith (classOf [SeleniumJSSuiteRunner ])
13
+ @ RunWith (classOf [JSEnvSuiteRunner ])
14
14
class SeleniumJSSuite extends JSEnvSuite (
15
15
JSEnvSuiteConfig (new SeleniumJSEnv (TestCapabilities .fromEnv))
16
16
)
17
-
18
- class SeleniumJSSuiteRunner private (
19
- root : Class [_], base : JSEnvSuiteRunner )
20
- extends Suite (root, Arrays .asList[Runner ](base)) {
21
-
22
- /** Constructor for reflective instantiation via `@RunWith`. */
23
- def this (suite : Class [_ <: SeleniumJSSuite ]) =
24
- this (suite, new JSEnvSuiteRunner (suite))
25
-
26
- // Ignore `largeMessageTest` for chrome.
27
- if (TestCapabilities .nameFromEnv == " chrome" ) {
28
- base.filter(new Filter {
29
- def describe (): String = " Ignore largeMessageTest"
30
-
31
- def shouldRun (description : Description ): Boolean = {
32
- description.getMethodName == null ||
33
- ! description.getMethodName.startsWith(" largeMessageTest" )
34
- }
35
- })
36
- }
37
- }
You can’t perform that action at this time.
0 commit comments