mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
feat: add cohesive e2e tests for the web terminal, apps, and workspaces (#8140)
* feat: add cohesive e2e tests for the web terminal, apps, and workspaces * Fix web terminal flake
This commit is contained in:
@ -310,6 +310,7 @@ type GitAuthConfig struct {
|
||||
|
||||
type ProvisionerConfig struct {
|
||||
Daemons clibase.Int64 `json:"daemons" typescript:",notnull"`
|
||||
DaemonsEcho clibase.Bool `json:"daemons_echo" typescript:",notnull"`
|
||||
DaemonPollInterval clibase.Duration `json:"daemon_poll_interval" typescript:",notnull"`
|
||||
DaemonPollJitter clibase.Duration `json:"daemon_poll_jitter" typescript:",notnull"`
|
||||
ForceCancelInterval clibase.Duration `json:"force_cancel_interval" typescript:",notnull"`
|
||||
@ -1093,6 +1094,17 @@ when required by your organization's security policy.`,
|
||||
Group: &deploymentGroupProvisioning,
|
||||
YAML: "daemons",
|
||||
},
|
||||
{
|
||||
Name: "Echo Provisioner",
|
||||
Description: "Whether to use echo provisioner daemons instead of Terraform. This is for E2E tests.",
|
||||
Flag: "provisioner-daemons-echo",
|
||||
Env: "CODER_PROVISIONER_DAEMONS_ECHO",
|
||||
Hidden: true,
|
||||
Default: "false",
|
||||
Value: &c.Provisioner.DaemonsEcho,
|
||||
Group: &deploymentGroupProvisioning,
|
||||
YAML: "daemonsEcho",
|
||||
},
|
||||
{
|
||||
Name: "Poll Interval",
|
||||
Description: "Time to wait before polling for a new job.",
|
||||
|
Reference in New Issue
Block a user