mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 20:25:48 +00:00
* better error handling + tests * fix tests * change addResponse to take a string instead of a Request * remove unneeded change * respond to comments * fix tests, re-lint * improve error message
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import responses from "../fixtures/responses";
|
|
import rippled from "../fixtures/rippled";
|
|
import { TestSuite, assertResultMatch } from "../testUtils";
|
|
|
|
/**
|
|
* Every test suite exports their tests in the default object.
|
|
* - Check out the "TestSuite" type for documentation on the interface.
|
|
* - Check out "test/client/index.ts" for more information about the test runner.
|
|
*/
|
|
export default <TestSuite>{
|
|
"request account_objects": async (client, address, mockRippled) => {
|
|
mockRippled.addResponse("account_objects", rippled.account_objects.normal);
|
|
const result = await client.request({
|
|
command: "account_objects",
|
|
account: address,
|
|
});
|
|
|
|
assertResultMatch(
|
|
result.result,
|
|
responses.getAccountObjects,
|
|
"AccountObjectsResponse"
|
|
);
|
|
},
|
|
|
|
"request account_objects - invalid options": async (
|
|
client,
|
|
address,
|
|
mockRippled
|
|
) => {
|
|
mockRippled.addResponse("account_objects", rippled.account_objects.normal);
|
|
const result = await client.request({
|
|
command: "account_objects",
|
|
account: address,
|
|
});
|
|
|
|
assertResultMatch(
|
|
result.result,
|
|
responses.getAccountObjects,
|
|
"AccountObjectsResponse"
|
|
);
|
|
},
|
|
};
|