UNPKG

@pasciaks/lostwords-org-library

Version:

Lostwords.org - Word search generator and function library.

18 lines (13 loc) 329 B
/** * * Although not using a testing library like Jest, this file is used to test the library. * */ const puzzleMakerLibrary = require("./index"); let result; try { result = puzzleMakerLibrary.createManyPuzzles(1); } catch (error) { console.log("Error:", error); } console.log("Puzzles:", result);