"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/java/test/org/openqa/selenium/edge/BUILD.bazel" (17 Feb 2023, 1029 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 load("@rules_jvm_external//:defs.bzl", "artifact")
    2 load("//java:defs.bzl", "JUNIT5_DEPS", "java_selenium_test_suite")
    3 
    4 java_selenium_test_suite(
    5     name = "large-tests",
    6     size = "large",
    7     srcs = glob(["*Test.java"]),
    8     browsers = [
    9         "edge",
   10     ],
   11     data = [
   12         "//common/extensions",
   13     ],
   14     javacopts = [
   15         "--release",
   16         "11",
   17     ],
   18     tags = [
   19         "selenium-remote",
   20     ],
   21     deps = [
   22         "//java/src/org/openqa/selenium/edge",
   23         "//java/src/org/openqa/selenium/remote",
   24         "//java/src/org/openqa/selenium/support",
   25         "//java/test/org/openqa/selenium/build",
   26         "//java/test/org/openqa/selenium/testing:annotations",
   27         "//java/test/org/openqa/selenium/testing:test-base",
   28         "//java/test/org/openqa/selenium/testing/drivers",
   29         artifact("com.google.guava:guava"),
   30         artifact("org.junit.jupiter:junit-jupiter-api"),
   31         artifact("org.assertj:assertj-core"),
   32         artifact("org.mockito:mockito-core"),
   33     ] + JUNIT5_DEPS,
   34 )