Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 10 additions & 123 deletions package-lock.json

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

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"author": "Fluence Labs",
"license": "Apache-2.0",
"dependencies": {
"@fluencelabs/avm": "0.10.2",
"@fluencelabs/avm": "0.10.5",
"async": "3.2.0",
"base64-js": "1.3.1",
"bs58": "4.0.1",
Expand All @@ -37,10 +37,8 @@
"uuid": "8.3.0"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"jest-each": "^27.0.2",
"ts-jest": "^26.5.4",
"typescript": "^3.9.5"
}
Expand Down
4 changes: 3 additions & 1 deletion src/__test__/integration/client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,9 @@ describe('Typescript usage suite', () => {

// assert
await expect(res).rejects.toMatchObject({
msg: "Local service error: ret_code is 1024, error message is '\"The handler did not set any result. Make sure you are calling the right peer and the handler has been registered. Original request data was: serviceId='peer' fnName='identify' args=''\"'",
msg: expect.stringContaining(
`The handler did not set any result. Make sure you are calling the right peer and the handler has been registered. Original request data was: serviceId='peer' fnName='identify' args=''\"'`,
),
instruction: 'call %init_peer_id% ("peer" "identify") [] res',
});
});
Expand Down