| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import { Blockchain, SandboxContract, TreasuryContract } from "@ton/sandbox";
- import { Cell, toNano } from "@ton/core";
- import { Main } from "../wrappers/Main";
- import "@ton/test-utils";
- import { compile } from "@ton/blueprint";
- describe("Main", () => {
- let code: Cell;
- beforeAll(async () => {
- code = await compile("Main");
- });
- let blockchain: Blockchain;
- let deployer: SandboxContract<TreasuryContract>;
- let main: SandboxContract<Main>;
- beforeEach(async () => {
- blockchain = await Blockchain.create();
- main = blockchain.openContract(Main.createFromConfig({}, code));
- deployer = await blockchain.treasury("deployer");
- const deployResult = await main.sendDeploy(
- deployer.getSender(),
- toNano("0.05")
- );
- expect(deployResult.transactions).toHaveTransaction({
- from: deployer.address,
- to: main.address,
- deploy: true,
- success: true,
- });
- });
- it("should deploy", async () => {
- // the check is done inside beforeEach
- // blockchain and main are ready to use
- });
- });
|