Clean classes and repository

This commit is contained in:
Shin'ya Ueoka 2019-02-24 22:20:37 +09:00
parent a880d5684b
commit f707f4da75
10 changed files with 279 additions and 251 deletions

View file

@ -44,14 +44,5 @@ describe("shared/commands/parsers", () => {
.to.equal('http://google.com');
});
});
describe('#homepageUrls', () => {
it('split urls', () => {
expect(parsers.homepageUrls('https://google.com/'))
.to.deep.equal(['https://google.com/']);
expect(parsers.homepageUrls('yahoo.com|https://i-beam.org/'))
.to.deep.equal(['http://yahoo.com', 'https://i-beam.org/']);
});
});
});