plum-e2e 2.9.14 → 2.9.17

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.
package/CLAUDE.md CHANGED
@@ -137,7 +137,7 @@ Never write comments that:
137
137
  - Describe the current task or fix ("added for the live page", "handles issue #123")
138
138
  - Are multi-line docblocks explaining parameters
139
139
 
140
- The GPL license header at the top of every file is a legal requirement — do not remove it.
140
+ The MIT license header at the top of every file is a legal requirement — do not remove it. `npm run add-license` (config: `license-config.json`) applies and verifies it and runs in the pre-commit hook. Match the existing style for the file type: `/* … */` for JS/TS/CSS, `<!-- … -->` for Svelte, `# …` for shell/YAML/Dockerfiles/dotfiles, `// …` for `schema.prisma` (Prisma's formatter rewrites `/* */`, so it's kept out of `add-license` and headered by hand). JSON files carry no header.
141
141
 
142
142
  ---
143
143
 
package/README.md CHANGED
@@ -79,25 +79,28 @@ Full documentation is available at:
79
79
 
80
80
  ## Command Reference
81
81
 
82
- | Command | Description |
83
- | ----------------------------- | ----------------------------------------------------------------------------------------------------------------- |
84
- | `plum init` | Initialize a new project in the current folder |
85
- | `plum server start` | Start the full UI stack via Docker |
86
- | `plum server restart` | Rebuild Docker images and restart the server without prompts |
87
- | `plum server stop` | Stop the server (data preserved) |
88
- | `plum server reconfig` | Re-enter server settings without starting |
89
- | `plum update` | Update Plum, then restart each registered server/node on this machine (asks before each, in an interactive shell) |
90
- | `plum node start` | Set up connectivity, start a runner node, and open the runner menu |
91
- | `plum node restart` | Stop, refresh dependencies, and restart the runner node |
92
- | `plum node stop` | Stop the runner node started from this folder |
93
- | `plum node reconfig` | Re-enter node settings and re-register |
94
- | `plum run-test` | Run all tests locally without Docker |
95
- | `plum run-test @tag` | Run tests matching a tag |
96
- | `plum run-test --parallel N` | Run tests across N parallel workers |
97
- | `plum run-test --browser <b>` | Run in `chromium` (default) or `firefox` |
98
- | `plum run-test --help` | Show usage for `run-test` |
99
- | `plum create-step` | Interactively scaffold a new step definition |
100
- | `plum manage-runners` | Open the interactive runner management menu |
82
+ | Command | Description |
83
+ | ----------------------------- | --------------------------------------------------------------------------------------------- |
84
+ | `plum init` | Initialize a new project in the current folder |
85
+ | `plum server start` | Start the full UI stack via Docker |
86
+ | `plum server restart` | Rebuild Docker images and restart the server without prompts |
87
+ | `plum server stop` | Stop the server (data preserved) |
88
+ | `plum server reconfig` | Re-enter server settings without starting |
89
+ | `plum update` | Update Plum, then restart every registered server and node on this machine (asks before each) |
90
+ | `plum node start [name]` | Register a runner node with the server and start it on this machine |
91
+ | `plum node list` | List this machine's nodes and their status |
92
+ | `plum node restart [name]` | Stop, refresh dependencies, and restart a node |
93
+ | `plum node stop [name]` | Stop a node |
94
+ | `plum node delete <name>` | Stop the node, delete its local config, and unregister it from the server |
95
+ | `plum node reconfig [name]` | Re-enter a node's settings and re-register, without starting it |
96
+ | `plum run-test` | Run all tests locally without Docker |
97
+ | `plum run-test @tag` | Run tests matching a tag |
98
+ | `plum run-test --parallel N` | Run tests across N parallel workers |
99
+ | `plum run-test --browser <b>` | Run in `chromium` (default) or `firefox` |
100
+ | `plum run-test --help` | Show usage for `run-test` |
101
+ | `plum create-step` | Interactively scaffold a new step definition |
102
+ | `plum create-test` | Interactively scaffold a full feature (`.feature` + Page + Steps) |
103
+ | `plum manage-runners` | Open the interactive runner management menu |
101
104
 
102
105
  ---
103
106
 
@@ -126,7 +129,7 @@ npm run dev # available at http://localhost:5173
126
129
  ```bash
127
130
  cd backend
128
131
  npm test # run all tests
129
- npm test -- @test-1 # run a specific scenario
132
+ npm test -- @TC-001 # run a specific scenario
130
133
  npm test -- --parallel 4 # run in parallel
131
134
  npm run create-step # scaffold a step definition
132
135
  npm run create-test # scaffold a full test from template
@@ -1,18 +1,6 @@
1
1
  /*
2
2
  * This file is part of Plum.
3
- *
4
- * Plum is free software: you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License as published by
6
- * the Free Software Foundation, either version 3 of the License, or
7
- * (at your option) any later version.
8
- *
9
- * Plum is distributed in the hope that it will be useful,
10
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- * GNU General Public License for more details.
13
- *
14
- * You should have received a copy of the GNU General Public License
15
- * along with Plum. If not, see https://www.gnu.org/licenses/.
3
+ * Licensed under the MIT License. See LICENSE file in the project root for details.
16
4
  */
17
5
 
18
6
  // Wires up Plum's session recording — removing or reordering code here can silently break report replay.
@@ -1,18 +1,6 @@
1
1
  /*
2
2
  * This file is part of Plum.
3
- *
4
- * Plum is free software: you can redistribute it and/or modify
5
- * it under the terms of the GNU General Public License as published by
6
- * the Free Software Foundation, either version 3 of the License, or
7
- * (at your option) any later version.
8
- *
9
- * Plum is distributed in the hope that it will be useful,
10
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- * GNU General Public License for more details.
13
- *
14
- * You should have received a copy of the GNU General Public License
15
- * along with Plum. If not, see https://www.gnu.org/licenses/.
3
+ * Licensed under the MIT License. See LICENSE file in the project root for details.
16
4
  */
17
5
 
18
6
  // Wires up Plum's session recording — removing or reordering code here can silently break report replay.
@@ -1,16 +1,6 @@
1
- /**
2
- * This file is part of Plum.
3
- * Plum is free software: you can redistribute it and/or modify
4
- * it under the terms of the GNU General Public License as published by
5
- * the Free Software Foundation, either version 3 of the License, or
6
- * (at your option) any later version.
7
- * Plum is distributed in the hope that it will be useful,
8
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
- * GNU General Public License for more details.
11
- * You should have received a copy of the GNU General Public License
12
- * along with Plum. If not, see https://www.gnu.org/licenses/.
13
- */
1
+ // This file is part of Plum.
2
+ // Licensed under the MIT License. See LICENSE file in the project root for details.
3
+
14
4
  generator client {
15
5
  provider = "prisma-client-js"
16
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plum-e2e",
3
- "version": "2.9.14",
3
+ "version": "2.9.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/silverlunah/plum.git"