Skip to content

Commit

Permalink
CHORE: bump to version 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andregoncalves committed May 20, 2024
1 parent a70ea97 commit 7270d2c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "selfkey-identity-wallet",
"productName": "SelfKey Identity Wallet",
"version": "2.1.2",
"version": "2.1.3",
"description": "The Official SelfKey Identity Wallet for Desktop",
"browser": [
"chrome"
Expand Down
30 changes: 15 additions & 15 deletions src/main/platform/relying-party.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('RelyingPartyRest', () => {
url: `${testEndpoint}/did:eth:0xtest`,
headers: { 'User-Agent': RelyingPartyRest.userAgent, Origin: 'test' },
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toBe(testChallnage);
Expand Down Expand Up @@ -119,7 +119,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toBe(testToken);
Expand Down Expand Up @@ -151,7 +151,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
});
Expand Down Expand Up @@ -189,7 +189,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true,
rejectUnauthorized: false,
formData: {
document: {
value: doc.buffer,
Expand Down Expand Up @@ -319,7 +319,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true,
rejectUnauthorized: false,
body: { attributes, meta: {} }
}
]);
Expand Down Expand Up @@ -348,7 +348,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand Down Expand Up @@ -376,7 +376,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand All @@ -401,7 +401,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand All @@ -427,7 +427,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand Down Expand Up @@ -467,7 +467,7 @@ describe('RelyingPartyRest', () => {
},
body: { templateId, attributes },
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
});
Expand Down Expand Up @@ -508,7 +508,7 @@ describe('RelyingPartyRest', () => {
},
body: application,
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
});
Expand All @@ -533,7 +533,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand All @@ -560,7 +560,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
expect(res).toEqual('ok');
Expand Down Expand Up @@ -597,7 +597,7 @@ describe('RelyingPartyRest', () => {
}
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
});
Expand Down Expand Up @@ -636,7 +636,7 @@ describe('RelyingPartyRest', () => {
Origin: 'test'
},
json: true,
rejectUnauthorized: true
rejectUnauthorized: false
}
]);
});
Expand Down

0 comments on commit 7270d2c

Please sign in to comment.