Updated the test system
This commit is contained in:
15
test/isAbsoluteURL.test.js
Normal file
15
test/isAbsoluteURL.test.js
Normal file
@ -0,0 +1,15 @@
|
||||
const expect = require('expect');
|
||||
const {isAbsoluteURL} = require('./_30s.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();
|
||||
});
|
||||
Reference in New Issue
Block a user