Add extension to uploaded debug log

This commit is contained in:
Fedor Indutny 2021-06-01 15:16:10 -07:00 committed by GitHub
parent 19f8042cd3
commit 51b45ab275
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View file

@ -40,7 +40,7 @@ describe('uploadDebugLogs', () => {
it('makes a request to get the S3 bucket, then uploads it there', async function test() {
assert.strictEqual(
await uploadDebugLogs('hello world', '1.2.3'),
'https://debuglogs.org/abc123'
'https://debuglogs.org/abc123.gz'
);
sinon.assert.calledOnce(this.fakeGet);