123456789101112131415161718192021 |
- import * as anchor from "@coral-xyz/anchor";
- import { AnchorError, Program } from "@coral-xyz/anchor";
- import splToken from "@solana/spl-token";
- import { DeclareId } from "../target/types/declare_id";
- import { assert } from "chai";
- describe("declare_id", () => {
- anchor.setProvider(anchor.AnchorProvider.local());
- const program = anchor.workspace.DeclareId as Program<DeclareId>;
- it("throws error!", async () => {
- try {
- await program.methods.initialize().rpc();
- assert.ok(false);
- } catch (_err) {
- assert.isTrue(_err instanceof AnchorError);
- const err: AnchorError = _err;
- assert.strictEqual(err.error.errorCode.number, 4100);
- }
- });
- });
|