Skip to content

Commit

Permalink
SIGN-7471 - fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-bobko committed Dec 12, 2024
1 parent ef15181 commit 292f907
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion actions/submit-signing-request/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ export class Task {
core.debug(log.message);
break;
case LogLevelInformation:
console.log('asdasdasdasdasd');
core.info(log.message);
break;
case LogLevelWarning:
Expand Down
4 changes: 3 additions & 1 deletion actions/submit-signing-request/tests/task.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { HelperInputOutput } from '../helper-input-output';
import { HelperArtifactDownload } from '../helper-artifact-download';
import axiosRetry from 'axios-retry';
import { Config } from '../config';
import { log } from 'console';

const testSignPathApiToken = 'TEST_TOKEN';
const testSigningRequestId = 'TEST_ID';
Expand Down Expand Up @@ -59,7 +60,8 @@ beforeEach(() => {
isFinalStatus: true,
status: 'Completed',
unsignedArtifactLink: testUnsignedArtifactLink,
signedArtifactLink: testSignedArtifactLink
signedArtifactLink: testSignedArtifactLink,
logs: [ { message: 'TEST_MESSAGE', level: 'Information' } ]
};

const getSigningRequestResponse = submitSigningRequestResponse;
Expand Down

0 comments on commit 292f907

Please sign in to comment.