blob: e2e8502671f8178a90d93fd9293c642693a97d35 [file] [log] [blame]
load("//src/TulsiGeneratorIntegrationTests:tulsi_integration_test.bzl", "tulsi_integration_test")
load("@build_bazel_rules_swift//swift:swift_library.bzl", "swift_library")
package(default_applicable_licenses = ["//:license"])
licenses(["notice"])
test_suite(name = "TulsiEndToEndTests")
swift_library(
name = "TulsiEndToEndTestBase",
testonly = 1,
srcs = [
"TulsiEndToEndTest.swift",
],
module_name = "TulsiEndToEndTestBase",
deps = [
"//src/TulsiGenerator:tulsi_generator_lib",
"//src/TulsiGeneratorIntegrationTests:BazelIntegrationTestCase",
],
)
tulsi_integration_test(
name = "TulsiEndToEndTest",
size = "large",
testonly = 1,
srcs = [
"ButtonsEndToEndTest.swift",
],
data = [
"Resources/Buttons.tulsiproj",
"//:tulsi.zip",
"//src/TulsiEndToEndTests/Resources/Buttons:all_files",
],
deps = [
":TulsiEndToEndTestBase",
],
)