- Notifications
You must be signed in to change notification settings - Fork928
Closed
Description
Error:
/home/runner/actions-runner/_work/coder/coder/site/e2e/helpers.ts:656: at helpers.ts:656 654 | "']", 655 | );> 656 | await parameterField.check(); |^ 657 | } else if (richParameter.type === "list(string)") { 658 | throw new Error("not implemented yet"); // FIXME 659 | } else {elementHandle.check: Element is not attached to the DOM
As far as I can tell, here's a basic summary of the issue:
- The offending test is "update workspace – new, optional, immutable parameter added" from
updateWorkspace.spec
- We're getting an error from the call to the
fillParameters
helper function because the input field that is supposed to be getting filled out isn't being rendered to the DOM - The helper is called when the test case calls the
createWorkspace
andupdateWorkspace
helpers, but from the footage, it looks like the error is from the update step?