Skip to content

Commit

Permalink
Fix missing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbjohnson committed Jun 8, 2020
1 parent c14d935 commit eadaa03
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/oauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -2235,6 +2235,12 @@ describe('Bell', () => {
expect(OAuth.Client.baseUri('http://example.com:8080/x')).to.equal('http://example.com:8080/x');
expect(OAuth.Client.baseUri('https://example.com:8080/x')).to.equal('https://example.com:8080/x');
});

it('passes through without port', () => {

expect(OAuth.Client.baseUri('http://example.com/x')).to.equal('http://example.com/x');
expect(OAuth.Client.baseUri('https://example.com/x')).to.equal('https://example.com/x');
});
});

describe('signature()', () => {
Expand Down

0 comments on commit eadaa03

Please sign in to comment.