Skip to content

Commit 114b5d3

Browse files
fix: remove console.log (#3)
1 parent 1689cf9 commit 114b5d3

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/rollingversions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [14.x, 15.x]
13+
node-version: [14.x, 16.x]
1414

1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [14.x, 15.x]
17+
node-version: [14.x, 16.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

packages/http/src/initialRequest.integration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ test('initialRequest', async () => {
1212
`https://github.com/RollingVersions/test-single-npm-package-github-actions.git`,
1313
);
1414
expect(typeof capabilities.get('agent')).toBe('string');
15-
expect(capabilities.get('ls-refs')).toBe(true);
16-
expect(capabilities.get('fetch')).toBe('shallow filter');
15+
expect(capabilities.get('ls-refs')).toBe('unborn');
16+
expect(capabilities.get('fetch')).toBe('shallow wait-for-done filter');
1717
expect(capabilities.get('server-option')).toBe(true);
1818
expect(capabilities.get('object-format')).toBe('sha1');
1919
});

packages/http/src/initialRequest.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export default async function initialRequest<
3636
)}`,
3737
);
3838
}
39-
console.log('response.url =', response.url.href);
4039

4140
const capabilities = await parseInitialResponse(response.body);
4241
return {

0 commit comments

Comments
 (0)