Files
meteora-dlmm-bot/tests/unit/sanity.test.ts
Louis-Sinan c9daaddb77 first commit
2025-12-21 12:22:16 +01:00

14 lines
378 B
TypeScript

import { BN } from "@coral-xyz/anchor";
describe("Basic Setup Test", () => {
it("should handle BN correctly", () => {
const amount = new BN(100);
expect(amount.toString()).toBe("100");
});
it("should be able to import from src (sanity check)", () => {
// We'll add more complex tests once we mock external dependencies
expect(true).toBe(true);
});
});