Mercurial
diff design_system/test/BUILD @ 251:117c4d53c9a4
[ui] Add HTML-first Web Component system
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Tue, 04 Aug 2026 09:14:57 -0700 |
| parents | |
| children | 2b6e732087ff |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/design_system/test/BUILD Tue Aug 04 09:14:57 2026 -0700 @@ -0,0 +1,22 @@ +load("@aspect_rules_js//js:defs.bzl", "js_test") + +js_test( + name = "storybook_test", + entry_point = "storybook_test.js", + data = [ + "//design_system:design_system_server", + "//hg-web/e2e:node_modules/playwright-core", + "@playwright_chromium_linux//:chrome", + "@playwright_chromium_linux//:chromium", + ], + env = { + "CHROMIUM_PATH": "$(rootpath @playwright_chromium_linux//:chrome)", + }, + no_copy_to_bin = ["@playwright_chromium_linux//:chromium"], + size = "large", + target_compatible_with = [ + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + timeout = "long", +)