Skip to content

Commit b0db35e

Browse files
committed
Merge branch 'cz/structured-response' of github.com:langflow-ai/langflow into cz/structured-response
2 parents 76d133e + 842daf0 commit b0db35e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/frontend/tests/core/features/structured-response-agent.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ test(
4848
// canvas they share a single combobox-style dropdown keyed by the
4949
// component name — the testid resolves to "dropdown-output-undefined"
5050
// because Simple Agent's cached node ships with `data.node.key === null`.
51-
const outputDropdown = page.getByTestId("dropdown-output-undefined").first();
51+
const outputDropdown = page
52+
.getByTestId("dropdown-output-undefined")
53+
.first();
5254
await expect(outputDropdown).toBeVisible({ timeout: 30000 });
5355

5456
// The dropdown shows the currently selected output (Response by default).
@@ -130,7 +132,9 @@ test(
130132

131133
await adjustScreenView(page);
132134

133-
const outputDropdown = page.getByTestId("dropdown-output-undefined").first();
135+
const outputDropdown = page
136+
.getByTestId("dropdown-output-undefined")
137+
.first();
134138
await expect(outputDropdown).toBeVisible({ timeout: 30000 });
135139

136140
// Switch the agent's selected output to Structured Response — this is

0 commit comments

Comments
 (0)