diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/services.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/api/services.ts b/server/tests/api/services.ts index b396ea582..76911fdc5 100644 --- a/server/tests/api/services.ts +++ b/server/tests/api/services.ts | |||
@@ -42,16 +42,16 @@ describe('Test services', function () { | |||
42 | const res = await getOEmbed(server.url, oembedUrl) | 42 | const res = await getOEmbed(server.url, oembedUrl) |
43 | const expectedHtml = `<iframe width="560" height="315" src="http://localhost:9001/videos/embed/${server.video.uuid}" ` + | 43 | const expectedHtml = `<iframe width="560" height="315" src="http://localhost:9001/videos/embed/${server.video.uuid}" ` + |
44 | 'frameborder="0" allowfullscreen></iframe>' | 44 | 'frameborder="0" allowfullscreen></iframe>' |
45 | const expectedThumbnailUrl = 'http://localhost:9001/static/thumbnails/' + server.video.uuid + '.jpg' | 45 | const expectedThumbnailUrl = 'http://localhost:9001/static/previews/' + server.video.uuid + '.jpg' |
46 | 46 | ||
47 | expect(res.body.html).to.equal(expectedHtml) | 47 | expect(res.body.html).to.equal(expectedHtml) |
48 | expect(res.body.title).to.equal(server.video.name) | 48 | expect(res.body.title).to.equal(server.video.name) |
49 | expect(res.body.author_name).to.equal(server.video.author) | 49 | expect(res.body.author_name).to.equal(server.video.author) |
50 | expect(res.body.height).to.equal(315) | ||
51 | expect(res.body.width).to.equal(560) | 50 | expect(res.body.width).to.equal(560) |
51 | expect(res.body.height).to.equal(315) | ||
52 | expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl) | 52 | expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl) |
53 | expect(res.body.thumbnail_width).to.equal(200) | 53 | expect(res.body.thumbnail_width).to.equal(560) |
54 | expect(res.body.thumbnail_height).to.equal(110) | 54 | expect(res.body.thumbnail_height).to.equal(315) |
55 | }) | 55 | }) |
56 | 56 | ||
57 | it('Should have a valid oEmbed response with small max height query', async function () { | 57 | it('Should have a valid oEmbed response with small max height query', async function () { |