Skip to content

Commit

Permalink
test(fsnetwork): fix network test with new url (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
bweissbart committed Mar 9, 2020
1 parent ac2e9ed commit 0c54bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fsnetwork/src/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ describe('FSNetwork', () => {

test('default base URL', async () => {
const network = new FSNetwork({
baseURL: 'https://github.com'
baseURL: 'https://www.brandingbrand.com'
});

return network.get('/brandingbrand').then(response => {
return network.get('/careers').then(response => {
expect(response.status).toBe(200);
});
});
Expand Down

0 comments on commit 0c54bf2

Please sign in to comment.