This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const anchor = require("@project-serum/anchor"); | |
const serumCmn = require("@project-serum/common"); | |
const { TOKEN_PROGRAM_ID } = require("@solana/spl-token"); | |
describe("harkl-tests", () => { | |
// Configure the client to use the local cluster. | |
anchor.setProvider(anchor.Provider.env()); | |
const program = anchor.workspace.Harkl; |