enbu 0.2.0 → 0.4.3
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/README.md +182 -253
- package/dist/main.mjs +6310 -3951
- package/dist/main.mjs.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enbu",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "A simple YAML-based E2E testing framework powered by agent-browser. Define test flows in human-readable YAML and perform them in the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"e2e",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"selenium-alternative",
|
|
15
15
|
"playwright-alternative"
|
|
16
16
|
],
|
|
17
|
-
"homepage": "https://github.com/9wick/enbu
|
|
17
|
+
"homepage": "https://github.com/9wick/enbu",
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/9wick/enbu/issues"
|
|
20
20
|
},
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=22.x"
|
|
38
38
|
},
|
|
39
|
-
"dependencies": {
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"ts-pattern": "^5.9.0"
|
|
41
|
+
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"@types/node": "^22.14.1",
|
|
42
|
-
"glob": "^11.0.0",
|
|
43
44
|
"neverthrow": "^8.2.0",
|
|
44
45
|
"@packages/config": "0.0.0",
|
|
45
|
-
"@packages/agent-browser-adapter": "0.0.0",
|
|
46
46
|
"@packages/core": "0.0.0"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|