-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
48 lines (44 loc) · 2.35 KB
/
Copy pathenv.example
File metadata and controls
48 lines (44 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# You can get a WAVE API key at https://wave.webaim.org/api.
WAVE_KEY=__placeholder__
# You can get an Anthropic API key at https://console.anthropic.com/.
ANTHROPIC_API_KEY=__placeholder__
# Name to identify this Testaro instance to a server.
AGENT=__placeholder__
# Whether to make the browser visible (normally false).
HEADED_BROWSER=false
# Whether to output even forked-job logging to the primary log (normally false).
DEBUG=false
# Number of seconds to wait between actions (normally 0).
WAITS=0
# See https://nodejs.org/api/cli.html#options for all permitted options.
NODE_OPTIONS='--trace-uncaught --trace-warnings'
# Suppresses a routine warning from QualWeb.
PUPPETEER_DISABLE_HEADLESS_WARNING=true
# Replace the next 2 placeholders with http://localhost:3000 if Kilotest and Testaro are on the same host or the URL of the server (e.g., https://kilotest.com) if they are on different hosts.
# URL to poll for available jobs when watching the network.
NETWATCH_URL_JOB=__placeholder__/api/testaro-agent/job
# URL to report results to when watching the network.
NETWATCH_URL_REPORT=__placeholder__/api/testaro-agent/report
# Password of this Testaro agent
NETWATCH_URL_AUTH=__placeholder__
# Directory (relative to project root) to watch for jobs.
JOBDIR=__placeholder__
# Directory (relative to project root) to write reports to when watching a directory for jobs.
REPORTDIR=__placeholder__
# Multiplier for time limits (normally 1).
TIMEOUT_MULTIPLIER=1
# Whether to abort the job when launch retries are exhausted or a test act crashes (default false).
ABORT_ASSERTIVELY=false
# URL of any non-default (e.g., self-hosted) Nu Html Checker API (see ghcr.io/validator/validator).
TESTARO_NU_URL=__placeholder__
# Whether to launch the Playwright chromium browser without its sandbox (normally false).
# The sandbox requires unprivileged user-namespace cloning, which default container
# seccomp policies and some hardened hosts prohibit. Set this to true in containers,
# or run containers with a seccomp profile that permits user-namespace cloning.
TESTARO_CHROMIUM_NO_SANDBOX=false
## License
# © 2021–2025 CVS Health and/or one of its affiliates. All rights reserved.
# © 2026 Jeff Witt.
# © 2026 Jonathan Robert Pool.
# Licensed under the [MIT License](https://opensource.org/license/mit/). See [LICENSE](../../LICENSE) file at the project root for details.
# SPDX-License-Identifier: MIT