Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Replace it with test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dom Harrington committed Aug 11, 2017
1 parent 44bf706 commit 6bd66c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-explorer-ui/__tests__/lib/oas-to-har.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ describe('url', () => {
}, '/path', '').url).toBe('http://example.com/path');
});

it('should replace whitespace with %20', () => {
test('should replace whitespace with %20', () => {
expect(oasToHar({
servers: [{ url: 'http://example.com' }],
}, '/path with spaces', '').url).toBe('http://example.com/path%20with%20spaces');
});

it('should replace path params with values');
test('should replace path params with values');
});

0 comments on commit 6bd66c9

Please sign in to comment.