Files
0199d8f0-26e0-7703-a6f8-caf…/tests/voting-program.ts

16 lines
491 B
TypeScript
Raw Normal View History

2025-10-12 15:00:41 +00:00
import * as anchor from "@coral-xyz/anchor";
import { Program } from "@coral-xyz/anchor";
import { VotingProgram } from "../target/types/voting_program";
describe("voting-program", () => {
// Configure the client to use the local cluster.
const provider = anchor.AnchorProvider.env();
anchor.setProvider(provider);
const program = anchor.workspace.VotingProgram as Program<VotingProgram>;
it("Is initialized!", async () => {
// Students will write test cases here
});
});