@ptkdev/node-cli-boilerplate
Version:
Create node cli with this user friendly boilerplate. Use this respository as template for your new npm command line interface project
15 lines • 376 B
JavaScript
/**
* Jest Tests
* =====================
*
* @contributors: Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)
*
* @license: MIT License
*
*/
import m from "../functions/module";
test("show hello world", async () => {
const { app } = await m({ text: "hello-world" });
expect(app()).toBe("hello-world");
});
//# sourceMappingURL=module.test.js.map