@wscsports/blaze-web-sdk 0.31.1 → 0.31.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/package.json +13 -12
  2. package/publish/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wscsports/blaze-web-sdk",
3
- "version": "0.31.1",
3
+ "version": "0.31.3",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -16,17 +16,18 @@
16
16
  "publish:latest": "npm run build:prod && npm publish --access public --tag latest",
17
17
  "publish:beta": "npm run build:prod && npm publish --access public --tag beta",
18
18
  "version-download": "node ./version-downloader.js",
19
- "test": "node ./node_modules/@playwright/test/cli.js test --project='Desktop Chrome'",
20
- "test:desktop": "node ./node_modules/@playwright/test/cli.js test --project='Desktop Chrome' --project='Desktop Firefox' --project='Desktop Safari'",
21
- "test:desktop:stories": "node ./node_modules/@playwright/test/cli.js test --project='Desktop Chrome' --project='Desktop Safari' e2e-tests/tests/stories",
22
- "test:desktop:moments": "node ./node_modules/@playwright/test/cli.js test --project='Desktop Chrome' --project='Desktop Safari' e2e-tests/tests/moments",
23
- "test:desktop:long-form": "node ./node_modules/@playwright/test/cli.js test --project='Desktop Chrome' --project='Desktop Safari' e2e-tests/tests/video-longform",
24
- "test:mobile": "node ./node_modules/@playwright/test/cli.js test --project='iOS Safari 13' --project='Android Chrome'",
25
- "test:mobile:stories": "node ./node_modules/@playwright/test/cli.js test --project='iOS Safari 13' --project='Android Chrome' e2e-tests/tests/stories",
26
- "test:mobile:moments": "node ./node_modules/@playwright/test/cli.js test --project='iOS Safari 13' e2e-tests/tests/moments",
27
- "test:mobile:long-form": "node ./node_modules/@playwright/test/cli.js test --project='iOS Safari 13' e2e-tests/tests/video-longform",
28
- "test:android:stories": "export USE_PHYSICAL_DEVICE=true && export $(cat .env.physical-device 2>/dev/null | xargs) && node ./node_modules/@playwright/test/cli.js test --config=playwright.config.physical-device.ts --project='Android Mobile Chrome' e2e-tests/tests/stories",
29
- "test:android:moments": "export USE_PHYSICAL_DEVICE=true && export $(cat .env.physical-device 2>/dev/null | xargs) && node ./node_modules/@playwright/test/cli.js test --config=playwright.config.physical-device.ts --project='Android Mobile Chrome' e2e-tests/tests/moments"
19
+ "test": "cd e2e-tests && npx playwright test --project='Desktop Chrome'",
20
+ "test:desktop": "cd e2e-tests && npx playwright test --project='Desktop Chrome' --project='Desktop Firefox' --project='Desktop Safari'",
21
+ "test:desktop:stories": "cd e2e-tests && npx playwright test --project='Desktop Chrome' --project='Desktop Safari' tests/stories",
22
+ "test:desktop:stories:vast-ad": "cd e2e-tests && npx playwright test --project='Desktop Chrome' --project='Desktop Firefox' --project='Desktop Safari' tests/stories/playback/story-playback-ad-vast.spec.ts --workers=1",
23
+ "test:desktop:moments": "cd e2e-tests && npx playwright test --project='Desktop Chrome' --project='Desktop Safari' tests/moments",
24
+ "test:desktop:long-form": "cd e2e-tests && npx playwright test --project='Desktop Chrome' --project='Desktop Safari' tests/video-longform",
25
+ "test:mobile": "cd e2e-tests && npx playwright test --project='iOS Safari 13' --project='Android Chrome'",
26
+ "test:mobile:stories": "cd e2e-tests && npx playwright test --project='iOS Safari 13' --project='Android Chrome' tests/stories",
27
+ "test:mobile:moments": "cd e2e-tests && npx playwright test --project='iOS Safari 13' tests/moments",
28
+ "test:mobile:long-form": "cd e2e-tests && npx playwright test --project='iOS Safari 13' tests/video-longform",
29
+ "test:android:stories": "export USE_PHYSICAL_DEVICE=true && export $(cat .env.physical-device 2>/dev/null | xargs) && cd e2e-tests && npx playwright test --config=playwright.config.physical-device.ts --project='Android Mobile Chrome' tests/stories",
30
+ "test:android:moments": "export USE_PHYSICAL_DEVICE=true && export $(cat .env.physical-device 2>/dev/null | xargs) && cd e2e-tests && npx playwright test --config=playwright.config.physical-device.ts --project='Android Mobile Chrome' tests/moments"
30
31
  },
31
32
  "devDependencies": {
32
33
  "@playwright/test": "^1.56.0",