@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.
- package/package.json +13 -12
- 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.
|
|
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": "
|
|
20
|
-
"test:desktop": "
|
|
21
|
-
"test:desktop:stories": "
|
|
22
|
-
"test:desktop:
|
|
23
|
-
"test:desktop:
|
|
24
|
-
"test:
|
|
25
|
-
"test:mobile
|
|
26
|
-
"test:mobile:
|
|
27
|
-
"test:mobile:
|
|
28
|
-
"test:
|
|
29
|
-
"test:android:
|
|
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",
|