0.8.0 • Published 4 years ago

bptest v0.8.0

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

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);
})
0.8.0

4 years ago

0.7.0

4 years ago

0.5.0

4 years ago

0.6.0

4 years ago

0.4.1

4 years ago

0.3.0

4 years ago

0.4.0

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago