You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
539 B
16 lines
539 B
import * as anchor from "@coral-xyz/anchor"; |
|
import { Program } from "@coral-xyz/anchor"; |
|
import { PowhSolana } from "../target/types/powh_solana"; |
|
|
|
describe("powh-solana", () => { |
|
// Configure the client to use the local cluster. |
|
anchor.setProvider(anchor.AnchorProvider.env()); |
|
|
|
const program = anchor.workspace.powhSolana as Program<PowhSolana>; |
|
|
|
it("Is initialized!", async () => { |
|
// Add your test here. |
|
const tx = await program.methods.initialize().rpc(); |
|
console.log("Your transaction signature", tx); |
|
}); |
|
});
|
|
|