fix: make dropdown not repeat values on update, update mcp component (#7779)
Co-authored-by: cristhianzl <cristhian.lousa@gmail.com>
This commit is contained in:
parent
c161a2e68d
commit
3b660c26a3
7 changed files with 15 additions and 8 deletions
|
|
@ -5,7 +5,7 @@ test.describe("group node test", () => {
|
|||
/// <reference lib="dom"/>
|
||||
test(
|
||||
"group and ungroup updating values",
|
||||
{ tag: ["@release", "@workspace"] },
|
||||
{ tag: ["@release", "@workspace", "@components"] },
|
||||
async ({ page }) => {
|
||||
await awaitBootstrapTest(page);
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import { expect, test } from "@playwright/test";
|
|||
import { awaitBootstrapTest } from "../../utils/await-bootstrap-test";
|
||||
test(
|
||||
"user should be able to edit flow name by clicking on the header or on the main page",
|
||||
{ tag: ["@release"] },
|
||||
{ tag: ["@release", "@workspace"] },
|
||||
async ({ page }) => {
|
||||
const randomName = Math.random().toString(36).substring(2, 15);
|
||||
const randomName2 = Math.random().toString(36).substring(2, 15);
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import { expect, test } from "@playwright/test";
|
|||
import { awaitBootstrapTest } from "../../utils/await-bootstrap-test";
|
||||
test(
|
||||
"user should be able to edit tools",
|
||||
{ tag: ["@release"] },
|
||||
{ tag: ["@release", "@components"] },
|
||||
async ({ page }) => {
|
||||
await awaitBootstrapTest(page);
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { zoomOut } from "../../utils/zoom-out";
|
|||
|
||||
test(
|
||||
"user must be able to change mode of MCP server without any issues",
|
||||
{ tag: ["@release", "@workspace"] },
|
||||
{ tag: ["@release", "@workspace", "@components"] },
|
||||
async ({ page }) => {
|
||||
await awaitBootstrapTest(page);
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { zoomOut } from "../../utils/zoom-out";
|
|||
|
||||
test(
|
||||
"User should be able to use components as tool",
|
||||
{ tag: ["@release"] },
|
||||
{ tag: ["@release", "@components"] },
|
||||
async ({ page }) => {
|
||||
await awaitBootstrapTest(page);
|
||||
await page.getByTestId("blank-flow").click();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue