import getUncompressedPublicKey from "./getUncompressedPublicKey" describe("getUncompressedPublicKey", () => { it("should get the uncompressed public key from the public key hex", () => { const publicKey = "02d6297218553acc1b236a0a4d6a9b50b6956ca100fd27f5b64fc328f503dbf32b" const expectedUncompressedPublicKey = "04d6297218553acc1b236a0a4d6a9b50b6956ca100fd27f5b64fc328f503dbf32b26ee6ccf22e0ac278e3edb684879359ef3a81e5ecc06c8a779cd978af637f450" expect(getUncompressedPublicKey(publicKey)).toBe( expectedUncompressedPublicKey, ) }) })