mirror of
https://github.com/home-assistant/frontend.git
synced 2026-07-03 20:45:52 +01:00
67e1ca3f43
* Dont open demo * Scripts to run script/develop* * Scripts for dev demo and gallery * Background wrapper for agents with `--background` * Background `yarn dev` and `dev:serve` for agents * Dedupe lifecycle functions * Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
11 lines
267 B
Bash
Executable File
11 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
# Develop the e2e test app. Pass --background/--status/--stop/--logs to manage a
|
|
# detached instance (see build-scripts/dev-server.mjs).
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../../../.."
|
|
|
|
exec node build-scripts/dev-server.mjs --suite e2e-app "$@"
|