@exodus/test 1.0.0-rc.115 → 1.0.0-rc.116

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/bin/index.js +3 -3
  2. package/package.json +4 -4
package/bin/index.js CHANGED
@@ -615,9 +615,9 @@ const makeTitle = () => {
615
615
  let title = options.browsers === 'puppeteer' ? findBinary(options.binary) : options.binary
616
616
  if (options.browsers === 'playwright') return `${title} (Playwright-managed)`
617
617
  if (basename(title) === title) return title
618
- const dir = { '~': `${process.cwd()}/`, '.': `${homedir()}/` }
619
- if (title.startsWith(dir['~']) && dir['~'].length > 1) title = `./${title.slice(dir['~'].length)}`
620
- if (title.startsWith(dir['.']) && dir['.'].length > 1) title = `~/${title.slice(dir['.'].length)}`
618
+ const dir = { '.': `${process.cwd()}/`, '~': `${homedir()}/` }
619
+ if (title.startsWith(dir['.']) && dir['.'].length > 1) title = `./${title.slice(dir['.'].length)}`
620
+ if (title.startsWith(dir['~']) && dir['~'].length > 1) title = `~/${title.slice(dir['~'].length)}`
621
621
  return /\s/u.test(title) ? JSON.stringify(title) : title
622
622
  }
623
623
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/test",
3
- "version": "1.0.0-rc.115",
3
+ "version": "1.0.0-rc.116",
4
4
  "author": "Exodus Movement, Inc.",
5
5
  "description": "A test suite runner",
6
6
  "homepage": "https://github.com/ExodusOSS/test",
@@ -183,7 +183,7 @@
183
183
  "optionalDependencies": {
184
184
  "@chalker/queue": "^1.0.1",
185
185
  "@exodus/replay": "^1.0.0-rc.11",
186
- "@exodus/test-bundler": "1.0.0-rc.16",
186
+ "@exodus/test-bundler": "1.0.0-rc.17",
187
187
  "c8": "^9.1.0",
188
188
  "expect": "^30.2.0",
189
189
  "fast-glob": "^3.2.11",
@@ -199,7 +199,7 @@
199
199
  "@types/jest-when": "^3.5.2",
200
200
  "@types/node": "^24.0.11",
201
201
  "@typescript-eslint/eslint-plugin": "^7.15.0",
202
- "electron": "^38.7.0",
202
+ "electron": "^39.4.0",
203
203
  "eslint": "^8.44.0",
204
204
  "esvu": "^1.2.16",
205
205
  "jest": "^29.7.0",
@@ -211,7 +211,7 @@
211
211
  "jsvu": "^3.0.3",
212
212
  "prettier": "^3.0.3",
213
213
  "typedoc": "^0.28.16",
214
- "workerd": "^1.20260207.0"
214
+ "workerd": "^1.20260214.0"
215
215
  },
216
216
  "peerDependencies": {
217
217
  "@babel/register": "^7.0.0",