1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/node_modules/video-thumbnail-url/tests/util.js
2020-03-03 22:30:50 +02:00

24 lines
631 B
JavaScript

import should from 'should';
import getThumbnailURL from '../index';
export function testService(service, valid_urls, invalid_urls, thumb_url) {
describe(service, function() {
valid_urls.forEach(url => {
it(`should get thumb url for ${url}`, () => {
return getThumbnailURL(url).then(result => {
should.exist(result);
result.should.match(thumb_url);
});
});
});
invalid_urls.forEach(url => {
it(`should not get thumb url for ${url}`, () => {
return getThumbnailURL(url).then(should.not.exist);
});
});
});
}