Skip to content

Commit

Permalink
stronger unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoper De Leon committed Mar 10, 2018
1 parent 763c41d commit b6dffaf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/functional/test-url.js
Expand Up @@ -125,6 +125,8 @@ describe('parseUrl', () => {
parseUrl(`${url}-${i}`);
}
const a2 = parseUrl(url);
expect(a1).to.not.equal(parseUrl(url));
expect(a2).to.equal(parseUrl(url));
expect(a1).to.not.equal(a2);
});
it('should handle ports', () => {
Expand Down

0 comments on commit b6dffaf

Please sign in to comment.