You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/src/cleaners/lead-image-url.test.js

21 lines
508 B
JavaScript

import assert from 'assert';
import clean from './lead-image-url';
describe('clean(leadImageUrl)', () => {
it('returns the url if valid', () => {
const url = 'https://example.com';
assert.equal(clean(url), url);
});
it('returns null if the url is not valid', () => {
const url = 'this is not a valid url';
assert.equal(clean(url), null);
});
it('trims whitespace', () => {
const url = ' https://example.com/foo/bar.jpg';
assert.equal(clean(url), url.trim());
});
});