@@ -226,28 +226,6 @@ describe('reporterHTML', () => {
226
226
sendUsageReportStub . calledOnceWithExactly ( bsConfig , args , message , messageType , errorCode , { } , rawArgs ) ;
227
227
} ) ;
228
228
} ) ;
229
-
230
- // describe('generateCypressBuildReport', () => {
231
- // it('calls cypress build report with report download url', () => {
232
- // let pathStub = sinon.stub(path, 'join');
233
- // let fileExistStub = sinon.stub(fs, 'existsSync');
234
- // let rewireReporterHTML = rewire('../../../../bin/helpers/reporterHTML');
235
- // let generateCypressBuildReport = rewireReporterHTML.__get__('generateCypressBuildReport');
236
- // let getReportResponseStub = sinon.stub();
237
- // getReportResponseStub.calledOnceWith('abc/efg', 'report.zip', 'url');
238
- // rewireReporterHTML.__set__('getReportResponse', getReportResponseStub);
239
- // pathStub.returns('abc/efg');
240
- // fileExistStub.returns(true);
241
- // generateCypressBuildReport({ report_data: 'url' });
242
- // pathStub.restore();
243
- // });
244
-
245
- // reporterHTML.reportGenerator(bsConfig, buildId, args, rawArgs, {});
246
-
247
- // sinon.assert.calledOnce(requestStub);
248
- // sinon.assert.calledOnce(getUserAgentStub);
249
- // sendUsageReportStub.calledOnceWithExactly(bsConfig, args, message, messageType, errorCode, {}, rawArgs);
250
- // });
251
229
} ) ;
252
230
253
231
describe ( "unzipFile" , ( ) => {
0 commit comments