first commit
This commit is contained in:
13
tests/unit/sanity.test.ts
Normal file
13
tests/unit/sanity.test.ts
Normal 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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user