@nocobase/plugin-workflow-test 0.20.0-alpha.10 → 0.20.0-alpha.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -431,7 +431,9 @@ class ManualNode {
431
431
  this.nodeConfigure = page.getByLabel(`Manual-${nodeName}`, { exact: true }).getByRole("button", { name: "Configure" });
432
432
  this.assigneesDropDown = page.getByTestId("select-single");
433
433
  this.configureUserInterfaceButton = page.getByRole("button", { name: "Configure user interface" });
434
- this.addBlockButton = page.getByLabel("schema-initializer-Grid-AddBlockButton-workflows");
434
+ this.addBlockButton = page.getByLabel(
435
+ "schema-initializer-Grid-workflowManual:popup:configureUserInterface:addBlock-workflows"
436
+ );
435
437
  this.triggerDataMenu = page.getByRole("menuitem", { name: "Trigger data" });
436
438
  this.nodeDataMenu = page.getByRole("menuitem", { name: "Node result right" });
437
439
  this.customFormMenu = page.getByRole("menuitem", { name: "Custom form" });
@@ -1,8 +1,8 @@
1
1
  module.exports = {
2
- "@nocobase/client": "0.20.0-alpha.10",
3
- "@nocobase/utils": "0.20.0-alpha.10",
2
+ "@nocobase/client": "0.20.0-alpha.12",
3
+ "@nocobase/utils": "0.20.0-alpha.12",
4
4
  "lodash": "4.17.21",
5
- "@nocobase/test": "0.20.0-alpha.10",
6
- "@nocobase/server": "0.20.0-alpha.10",
7
- "@nocobase/database": "0.20.0-alpha.10"
5
+ "@nocobase/test": "0.20.0-alpha.12",
6
+ "@nocobase/server": "0.20.0-alpha.12",
7
+ "@nocobase/database": "0.20.0-alpha.12"
8
8
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nocobase/plugin-workflow-test",
3
3
  "displayName": "Workflow: test kit",
4
4
  "displayName.zh-CN": "工作流:测试工具包",
5
- "version": "0.20.0-alpha.10",
5
+ "version": "0.20.0-alpha.12",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "dist/server/index.js",
8
8
  "types": "./dist/server/index.d.ts",
@@ -11,5 +11,5 @@
11
11
  "@nocobase/server": "0.x",
12
12
  "@nocobase/test": "0.x"
13
13
  },
14
- "gitHead": "453e0774dae21750e96c7ddd2019c8889a0314d6"
14
+ "gitHead": "4d6655776b3f418dacd86370126e82ae25e1185a"
15
15
  }
@@ -434,7 +434,9 @@ export class ManualNode {
434
434
  .getByRole('button', { name: 'Configure' });
435
435
  this.assigneesDropDown = page.getByTestId('select-single');
436
436
  this.configureUserInterfaceButton = page.getByRole('button', { name: 'Configure user interface' });
437
- this.addBlockButton = page.getByLabel('schema-initializer-Grid-AddBlockButton-workflows');
437
+ this.addBlockButton = page.getByLabel(
438
+ 'schema-initializer-Grid-workflowManual:popup:configureUserInterface:addBlock-workflows',
439
+ );
438
440
  this.triggerDataMenu = page.getByRole('menuitem', { name: 'Trigger data' });
439
441
  this.nodeDataMenu = page.getByRole('menuitem', { name: 'Node result right' });
440
442
  this.customFormMenu = page.getByRole('menuitem', { name: 'Custom form' });