@vouchfor/embeds 2.0.14 → 2.0.15

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vouchfor/embeds",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "license": "MIT",
5
5
  "author": "Aaron Williams",
6
6
  "main": "dist/es/embeds.js",
@@ -36,7 +36,8 @@
36
36
  "storybook": "yarn prebuild && storybook dev -p 6007",
37
37
  "prebuild": "yarn build:deps && yarn generate:manifest",
38
38
  "test": "rm -rf test/lib && yarn prebuild && vite build --mode test && web-test-runner",
39
- "test:ci": "yarn test --config web-test-runner.ci.config.js"
39
+ "test:ci": "yarn test --config web-test-runner.ci.config.js",
40
+ "test:watch": "yarn test --watch"
40
41
  },
41
42
  "lint-staged": {
42
43
  "**/*.{ts,tsx,js}": "eslint --fix --quiet",
@@ -45,8 +46,8 @@
45
46
  "dependencies": {
46
47
  "@a11y/focus-trap": "^1.0.5",
47
48
  "@lit/task": "^1.0.0",
48
- "@vouchfor/canvas-video": "^8.0.3",
49
- "@vouchfor/media-player": "^3.0.14",
49
+ "@vouchfor/canvas-video": "^8.0.4",
50
+ "@vouchfor/media-player": "^3.0.15",
50
51
  "uuid": "^9.0.1"
51
52
  },
52
53
  "peerDependencies": {
@@ -65,7 +66,7 @@
65
66
  "@types/mocha": "^10.0.6",
66
67
  "@vouchfor/eslint-config": "^1.0.1",
67
68
  "@vouchfor/prettier-config": "^1.0.1",
68
- "@vouchfor/video-utils": "^1.0.8",
69
+ "@vouchfor/video-utils": "^1.0.9",
69
70
  "@web/dev-server-esbuild": "^1.0.2",
70
71
  "@web/test-runner": "^0.18.1",
71
72
  "@web/test-runner-browserstack": "^0.7.1",
@@ -28,7 +28,7 @@ function playerLoaded(player: PlayerEmbed) {
28
28
  }
29
29
 
30
30
  describe('Embeds', () => {
31
- it('passes', async () => {
31
+ it('Sends correct tracking events', async () => {
32
32
  const player = await fixture<PlayerEmbed>(
33
33
  html`<vouch-embed-player env="dev" .data=${data} aspectratio=${1}></vouch-embed-player>`
34
34
  );