/BPTest

Unit testing for Minecraft behavior packs

Primary LanguageTypeScript

BPTest

Unit testing for Minecraft behavior packs

Installation

npm i bptest

Usage

import { ENV } from "bptest";
import path from "path";

const PROJ = "path/to/project";

ENV.setup(PROJ, async ({ readJSON, World, Entity }) => {
    const W = new World();
    const E = new Entity(await readJSON(path.join(PROJ, "entities/player.json")));
    W.add(E);
    W.tick(200);
})