UNPKG

generator-sma-plugin

Version:

Scaffold a package for the Scriptcraft Modular Architecture - Minecraft Plugins in Javascript!

12 lines (10 loc) 251 B
import { something } from '../lib/index' describe('<%= name %>.something', () => { it('exists', () => { expect(something).toBeTruthy() }) it("returns 'Hello'", () => { const returnValue = something() expect(returnValue).toBe('Hello') }) })