@dargmuesli/nuxt-vio-testing 14.0.2 → 14.0.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.
@@ -287,7 +287,7 @@ export const testMetadata = async ({
287
287
  attributes: [
288
288
  {
289
289
  key: 'href',
290
- value: `${SITE_URL}${path}`,
290
+ value: withoutTrailingSlash(`${SITE_URL}${path}`),
291
291
  },
292
292
  {
293
293
  key: 'hreflang',
@@ -321,7 +321,7 @@ export const testMetadata = async ({
321
321
  attributes: [
322
322
  {
323
323
  key: 'href',
324
- value: `${SITE_URL}${path}`,
324
+ value: withoutTrailingSlash(`${SITE_URL}${path}`),
325
325
  },
326
326
  {
327
327
  key: 'hreflang',
package/package.json CHANGED
@@ -54,5 +54,5 @@
54
54
  "test:e2e:server:static": "cross-env NODE_ENV=production PORT=\"${PORT:-3002}\" SITE_URL=\"${SITE_URL:-https://localhost:3002}\" VIO_SERVER=static pnpm run test:e2e"
55
55
  },
56
56
  "type": "module",
57
- "version": "14.0.2"
57
+ "version": "14.0.3"
58
58
  }