Skip to content

Commit

Permalink
fix: remove console.log (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ForbesLindesay authored Feb 20, 2022
1 parent 1689cf9 commit 114b5d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rollingversions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 15.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 15.x]
node-version: [14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions packages/http/src/initialRequest.integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ test('initialRequest', async () => {
`https://github.com/RollingVersions/test-single-npm-package-github-actions.git`,
);
expect(typeof capabilities.get('agent')).toBe('string');
expect(capabilities.get('ls-refs')).toBe(true);
expect(capabilities.get('fetch')).toBe('shallow filter');
expect(capabilities.get('ls-refs')).toBe('unborn');
expect(capabilities.get('fetch')).toBe('shallow wait-for-done filter');
expect(capabilities.get('server-option')).toBe(true);
expect(capabilities.get('object-format')).toBe('sha1');
});
1 change: 0 additions & 1 deletion packages/http/src/initialRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export default async function initialRequest<
)}`,
);
}
console.log('response.url =', response.url.href);

const capabilities = await parseInitialResponse(response.body);
return {
Expand Down

0 comments on commit 114b5d3

Please sign in to comment.