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.
17 lines
539 B
17 lines
539 B
|
3 months ago
|
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);
|
||
|
|
});
|
||
|
|
});
|