Files
30-seconds-of-code/test/isAbsoluteURL/isAbsoluteURL.test.js
2018-06-18 17:31:56 +03:00

16 lines
519 B
JavaScript

const expect = require('expect');
const isAbsoluteURL = require('./isAbsoluteURL.js');
test('isAbsoluteURL is a Function', () => {
expect(isAbsoluteURL).toBeInstanceOf(Function);
});
test('Given string is an absolute URL', () => {
expect(isAbsoluteURL('https://google.com')).toBeTruthy();
});
test('Given string is an absolute URL', () => {
expect(isAbsoluteURL('ftp://www.myserver.net')).toBeTruthy();
});
test('Given string is not an absolute URL', () => {
expect(isAbsoluteURL('/foo/bar')).toBeFalsy();
});