UNPKG

system

Version:

Flexible module and resource system

8 lines (7 loc) 215 B
var test = require("test"); try { require("bogus"); test.assert(false, "require throws error when module missing"); } catch (exception) { test.assert(true, "require throws error when module missing"); }