We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d96ca1 commit f6be873Copy full SHA for f6be873
packages/mesh-core/test/utils.test.ts
@@ -0,0 +1,11 @@
1
+import { deserializePoolId } from "../src";
2
+
3
+describe("Util tests", () => {
4
+ it("should correctly deserialize a pool id", () => {
5
+ expect(
6
+ deserializePoolId(
7
+ "pool1lzg07gaddygem6f5ch60yv0l0g2529af87hqgw6gkqdmsfs39z9",
8
+ ),
9
+ ).toBe("f890ff23ad69119de934c5f4f231ff7a154517a93fae043b48b01bb8");
10
+ });
11
+});
0 commit comments