multiple describe blocks

This commit is contained in:
Mantas Vidutis 2023-01-03 13:45:03 +07:00
parent ac765342eb
commit f461bfa0eb
No known key found for this signature in database
GPG Key ID: 60BDC8CD8FA60E29

View File

@ -101,8 +101,10 @@ describe("AuthzExtension", () => {
tmClient.disconnect();
});
});
it("works querying by granter", async () => {
describe("granter grants", () => {
it("works", async () => {
pendingWithoutSimapp46();
const [client, tmClient] = await makeClientWithAuthz(simapp.tendermintUrl);
const response = await client.authz.granterGrants(granter1Address);
@ -127,8 +129,10 @@ describe("AuthzExtension", () => {
tmClient.disconnect();
});
});
it("works querying by grantee", async () => {
describe("grantee grants", () => {
it("works", async () => {
pendingWithoutSimapp46();
const [client, tmClient] = await makeClientWithAuthz(simapp.tendermintUrl);
const response = await client.authz.granteeGrants(grantee1Address);