Files
node-minecraft-data/test/load.js
T
TheDudeFromCIandRomain Beaumont 78d5266a27 Added Loot Data (#39)
* Added loot loaders.

Signed-off-by: TheDudeFromCI <thedudefromci@gmail.com>

* Added loot typings

Signed-off-by: TheDudeFromCI <thedudefromci@gmail.com>

* Added loot to api docs

Signed-off-by: TheDudeFromCI <thedudefromci@gmail.com>

* better integration

* update to mcdata 2.67.0

Co-authored-by: Romain Beaumont <romain.rom1@gmail.com>
2020-08-23 13:42:33 +02:00

12 lines
206 B
JavaScript

/* eslint-env mocha */
describe('load', () => {
it('loads the lib', () => {
require('minecraft-data')
require('../example')
})
it('run the example', () => {
require('../example')
})
})