Fix linting errors
This commit is contained in:
parent
e5a7c904c1
commit
02dfacf1c1
3 changed files with 7 additions and 7 deletions
6
lib/init-action-post-helper.test.js
generated
6
lib/init-action-post-helper.test.js
generated
|
|
@ -343,12 +343,12 @@ async function testFailedSarifUpload(t, actionsWorkflow, { category, databaseExi
|
|||
zipped_upload_size_bytes: 10,
|
||||
});
|
||||
if (databaseExists && exportDiagnosticsEnabled) {
|
||||
t.true(databaseExportDiagnosticsStub.calledOnceWith(config.dbLocation, sinon.match.string, category), `Actual args were: ${databaseExportDiagnosticsStub.args}`);
|
||||
t.true(databaseExportDiagnosticsStub.calledOnceWith(config.dbLocation, sinon.match.string, category), `Actual args were: ${JSON.stringify(databaseExportDiagnosticsStub.args)}`);
|
||||
}
|
||||
else {
|
||||
t.true(diagnosticsExportStub.calledOnceWith(sinon.match.string, category, config), `Actual args were: ${diagnosticsExportStub.args}`);
|
||||
t.true(diagnosticsExportStub.calledOnceWith(sinon.match.string, category, config), `Actual args were: ${JSON.stringify(diagnosticsExportStub.args)}`);
|
||||
}
|
||||
t.true(uploadFiles.calledOnceWith(sinon.match.string, sinon.match.string, category, sinon.match.any, sinon.match.any), `Actual args were: ${uploadFiles.args}`);
|
||||
t.true(uploadFiles.calledOnceWith(sinon.match.string, sinon.match.string, category, sinon.match.any, sinon.match.any), `Actual args were: ${JSON.stringify(uploadFiles.args)}`);
|
||||
t.true(waitForProcessing.calledOnceWith(sinon.match.any, "42", sinon.match.any, {
|
||||
isUnsuccessfulExecution: true,
|
||||
}));
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -393,7 +393,7 @@ async function testFailedSarifUpload(
|
|||
sinon.match.string,
|
||||
category,
|
||||
),
|
||||
`Actual args were: ${databaseExportDiagnosticsStub.args}`,
|
||||
`Actual args were: ${JSON.stringify(databaseExportDiagnosticsStub.args)}`,
|
||||
);
|
||||
} else {
|
||||
t.true(
|
||||
|
|
@ -402,7 +402,7 @@ async function testFailedSarifUpload(
|
|||
category,
|
||||
config,
|
||||
),
|
||||
`Actual args were: ${diagnosticsExportStub.args}`,
|
||||
`Actual args were: ${JSON.stringify(diagnosticsExportStub.args)}`,
|
||||
);
|
||||
}
|
||||
t.true(
|
||||
|
|
@ -413,7 +413,7 @@ async function testFailedSarifUpload(
|
|||
sinon.match.any,
|
||||
sinon.match.any,
|
||||
),
|
||||
`Actual args were: ${uploadFiles.args}`,
|
||||
`Actual args were: ${JSON.stringify(uploadFiles.args)}`,
|
||||
);
|
||||
t.true(
|
||||
waitForProcessing.calledOnceWith(sinon.match.any, "42", sinon.match.any, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue