mirror of
https://github.com/barkeser2002/node-minecraft-data.git
synced 2026-09-25 13:46:15 +03:00
* 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>
12 lines
206 B
JavaScript
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')
|
|
})
|
|
})
|