14 lines
378 B
TypeScript
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);
|
|
});
|
|
});
|