@gnuechtel/nx-cucumber 1.4.0 → 1.4.1
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 +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ Plugin to use Cucumber within Nx workspaces
|
|
|
44
44
|
- [Logging](#logging)
|
|
45
45
|
- [Contribution](#contribution)
|
|
46
46
|
- [Troubleshooting](#troubleshooting)
|
|
47
|
+
- [Known limitations in 1.x](#known-limitations-in-1x)
|
|
47
48
|
- [Dev server does not shutdown properly](#dev-server-does-not-shutdown-properly)
|
|
48
49
|
- [Wrong line numbers when using Playwright inspector](#wrong-line-numbers-when-using-playwright-inspector)
|
|
49
50
|
- [A tag is not found](#a-tag-is-not-found)
|
|
@@ -639,6 +640,15 @@ Currently, this project is written and maintained by a [single person](https://g
|
|
|
639
640
|
|
|
640
641
|
## Troubleshooting
|
|
641
642
|
|
|
643
|
+
### Known limitations in 1.x
|
|
644
|
+
|
|
645
|
+
In the 1.x maintenance line, the following limitations are intentional:
|
|
646
|
+
|
|
647
|
+
- Playwright UI mode is not supported in the current 1.x executor architecture (tracked for 2.x via #43).
|
|
648
|
+
- Deterministic parallel Cucumber execution is not supported in 1.x (tracked for 2.x via #44).
|
|
649
|
+
- Inline-workspace Playwright inspector line precision is a known limitation and remains `won't fix` in 1.x (#36).
|
|
650
|
+
- Generated external-workspace debug source navigation history is tracked in #49 (currently closed). Open a follow-up issue if regression reappears.
|
|
651
|
+
|
|
642
652
|
### Dev server does not shutdown properly
|
|
643
653
|
|
|
644
654
|
Nx-cucumber does its best to properly shutdown dev server(s) after Cucumber execution. For some project setups it is difficult or even impossible to kill all processes. For such cases an easy workaround exists:
|
|
@@ -647,9 +657,9 @@ Before executing the Cucumber project, we just start the dev server in another t
|
|
|
647
657
|
|
|
648
658
|
### Wrong line numbers when using Playwright inspector
|
|
649
659
|
|
|
650
|
-
When trying out the example projects inside this repository, the Playwright inspector
|
|
660
|
+
When trying out the example projects inside this repository, the Playwright inspector can highlight incorrect line numbers when execution is paused. For inline-workspace scenarios this is tracked in [#36](https://gitlab.com/gnuechtel/open-source/-/issues/36) and remains `won't fix` in 1.x.
|
|
651
661
|
|
|
652
|
-
|
|
662
|
+
Generated external-workspace debug source navigation history is documented in [#49](https://gitlab.com/gnuechtel/open-source/-/issues/49), which is currently closed. If a regression reappears, open a follow-up issue. Depending on workspace setup and sync state, source mapping may still vary.
|
|
653
663
|
|
|
654
664
|
### A tag is not found
|
|
655
665
|
|