@camunda/play 5.5.1-rc.1 → 5.5.1-rc.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.
Files changed (2) hide show
  1. package/build/index.js +5 -1
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -118723,7 +118723,11 @@ function ELe({
118723
118723
  isSelfManaged: e
118724
118724
  }) {
118725
118725
  const t = `/test-scenarios/${encodeURIComponent(o)}`;
118726
- return e ? "/modeler" + t : t;
118726
+ if (e) {
118727
+ const n = window.location.pathname, i = n.lastIndexOf("/diagrams/");
118728
+ return i !== -1 ? n.substring(0, i) + t : "/modeler" + t;
118729
+ }
118730
+ return t;
118727
118731
  }
118728
118732
  const sLt = Pt(() => {
118729
118733
  const { hasMultipleTestFilesLinked: o } = Wt.state;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/play",
3
- "version": "5.5.1-rc.1",
3
+ "version": "5.5.1-rc.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "start": "vite",