Mercurial
diff mrjunejune/test/BUILD @ 259:667156fcd3e3
Add dev-only cyberpunk JRPG page
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Wed, 05 Aug 2026 09:19:41 -0700 |
| parents | b8aa08503378 |
| children | 1f9877b637e9 |
line wrap: on
line diff
--- a/mrjunejune/test/BUILD Wed Aug 05 05:25:40 2026 -0700 +++ b/mrjunejune/test/BUILD Wed Aug 05 09:19:41 2026 -0700 @@ -2,6 +2,7 @@ load("@rules_cc//cc:cc_test.bzl", "cc_test") load("@aspect_rules_js//js:defs.bzl", "js_test") load("//gui_ze:gui_ze.bzl", "move_files_into_dir", "bundle") +load("@rules_shell//shell:sh_test.bzl", "sh_test") # Files needed for test filegroup( @@ -86,12 +87,20 @@ timeout = "long", ) +sh_test( + name = "production_bundle_exclusion_test", + srcs = ["production_bundle_exclusion_test.sh"], + args = ["$(rootpath //mrjunejune:mrjunejune_server_bundle)"], + data = ["//mrjunejune:mrjunejune_server_bundle"], + size = "small", +) + js_test( name = "theme_and_webp_test", entry_point = "theme_and_webp_test.js", data = [ "//hg-web/e2e:node_modules/playwright-core", - "//mrjunejune:mrjunejune_server", + "//mrjunejune:mrjunejune_server_debug", "@playwright_chromium_linux//:chrome", "@playwright_chromium_linux//:chromium", ],