Skip to content

Commit ff31506

Browse files
committed
fix unused variables
Signed-off-by: Patrick <[email protected]>
1 parent e67a8e8 commit ff31506

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/10-issue.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,13 @@ describe('Issuers - BitstringStatusList Credential',
388388
'as defined in [VC-DATA-MODEL-2.0].',
389389
async function() {
390390
this.test.link = 'https://www.w3.org/TR/vc-bitstring-status-list/#:~:text=When%20a%20status%20list%20verifiable%20credential%20is%20published%2C%20it%20MUST%20be%20a%20conforming%20document%2C%20as%20defined%20in%20%5BVC%2DDATA%2DMODEL%2D2.0%5D';
391+
should.exist(issuerResponse,
392+
'Expected an issuer response.');
393+
should.not.exist(err,
394+
'Expected no errors in the issuer response.');
395+
issuerResponse.status.should.equal(201,
396+
'Expected response http code 201.');
397+
should.exist(issuedVc, `Expected VC from ${issuerName} to exist.`);
391398
for(statusListCredential of statusListCredentials) {
392399
testSlCredential({slCredential:
393400
statusListCredential},

0 commit comments

Comments
 (0)