first commit

This commit is contained in:
Louis-Sinan
2025-12-21 12:22:16 +01:00
commit c9daaddb77
34 changed files with 1735 additions and 0 deletions

13
tests/unit/sanity.test.ts Normal file
View File

@@ -0,0 +1,13 @@
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);
});
});