@frak-labs/core-sdk
Version:
Core SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.
19 lines (15 loc) • 537 B
text/typescript
import { describe, expect, it } from "../tests/vitest-fixtures";
import { BACKUP_KEY } from "./constants";
describe("constants", () => {
describe("BACKUP_KEY", () => {
it("should have correct backup key value", () => {
expect(BACKUP_KEY).toBe("nexus-wallet-backup");
});
it("should be a string", () => {
expect(typeof BACKUP_KEY).toBe("string");
});
it("should not be empty", () => {
expect(BACKUP_KEY.length).toBeGreaterThan(0);
});
});
});