aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos/videos.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-10-22 14:11:58 +0200
committerChocobozzz <me@florianbigard.com>2021-10-22 14:11:58 +0200
commitab4001aade0891b70e456a215ced0f825c57fde8 (patch)
tree1690f4eecdef3f9a41c6b330852995774638eb23 /shared/extra-utils/videos/videos.ts
parentde7f11143f6d8a617f1eb15d536a3486e7e22301 (diff)
downloadPeerTube-ab4001aade0891b70e456a215ced0f825c57fde8.tar.gz
PeerTube-ab4001aade0891b70e456a215ced0f825c57fde8.tar.zst
PeerTube-ab4001aade0891b70e456a215ced0f825c57fde8.zip
Provide origin URL to client and fix remote share
Diffstat (limited to 'shared/extra-utils/videos/videos.ts')
-rw-r--r--shared/extra-utils/videos/videos.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared/extra-utils/videos/videos.ts b/shared/extra-utils/videos/videos.ts
index a1d2ba0fc..4d2784dde 100644
--- a/shared/extra-utils/videos/videos.ts
+++ b/shared/extra-utils/videos/videos.ts
@@ -113,7 +113,7 @@ async function completeVideoCheck (
113 channel: { 113 channel: {
114 displayName: string 114 displayName: string
115 name: string 115 name: string
116 description 116 description: string
117 isLocal: boolean 117 isLocal: boolean
118 } 118 }
119 fixture: string 119 fixture: string
@@ -151,6 +151,7 @@ async function completeVideoCheck (
151 expect(video.dislikes).to.equal(attributes.dislikes) 151 expect(video.dislikes).to.equal(attributes.dislikes)
152 expect(video.isLocal).to.equal(attributes.isLocal) 152 expect(video.isLocal).to.equal(attributes.isLocal)
153 expect(video.duration).to.equal(attributes.duration) 153 expect(video.duration).to.equal(attributes.duration)
154 expect(video.url).to.contain(originHost)
154 expect(dateIsValid(video.createdAt)).to.be.true 155 expect(dateIsValid(video.createdAt)).to.be.true
155 expect(dateIsValid(video.publishedAt)).to.be.true 156 expect(dateIsValid(video.publishedAt)).to.be.true
156 expect(dateIsValid(video.updatedAt)).to.be.true 157 expect(dateIsValid(video.updatedAt)).to.be.true