An open API service indexing awesome lists of open source software.

https://github.com/bridge-core/bptest

Unit testing for Minecraft behavior packs
https://github.com/bridge-core/bptest

Last synced: 8 months ago
JSON representation

Unit testing for Minecraft behavior packs

Awesome Lists containing this project

README

          

# BPTest
Unit testing for Minecraft behavior packs

## Installation
```npm i bptest```

## Usage
```javascript
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);
})
```