Skip to content

Commit

Permalink
bump version (#139)
Browse files Browse the repository at this point in the history
* bump version
  • Loading branch information
vmidyllic authored Oct 4, 2023
1 parent 70c0d35 commit c6030a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xpolygonid/js-sdk",
"version": "1.1.0",
"version": "1.2.0",
"description": "SDK to work with Polygon ID",
"main": "dist/cjs/index.js",
"module": "dist/esm_esbuild/index.js",
Expand Down
4 changes: 0 additions & 4 deletions tests/onchain/on-chain-revocation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,13 @@ describe('onchain', () => {
chai.spy.on(onchainResolver, '_getStateStorageForIssuer', () => {
return {
getLatestStateById: () => {
console.log('mocked getLatestStateById genesis case');
throw new Error(VerifiableConstants.ERRORS.IDENTITY_DOES_NOT_EXIST);
}
};
});
chai.spy.on(onchainResolver, '_getOnChainRevocationStorageForIssuer', () => {
return {
getRevocationStatusByIdAndState: () => {
console.log('mocked getRevocationStatusByIdAndState genesis case');
return {
mtp: {
existence: false
Expand Down Expand Up @@ -345,7 +343,6 @@ describe('onchain', () => {
chai.spy.on(onchainResolver, '_getStateStorageForIssuer', () => {
return {
getLatestStateById: () => {
console.log('mocked getLatestStateById latest state case');
return {
state: BigInt('0xf600ba49073ff1c396ed674263f04cb246647039d55d43a49ce310a857fa8923')
};
Expand All @@ -355,7 +352,6 @@ describe('onchain', () => {
chai.spy.on(onchainResolver, '_getOnChainRevocationStorageForIssuer', () => {
return {
getRevocationStatusByIdAndState: () => {
console.log('mocked getRevocationStatusByIdAndState latest state case');
return {
mtp: {
existence: false
Expand Down

0 comments on commit c6030a4

Please sign in to comment.