UNPKG

tiddlywiki

Version:
17 lines (11 loc) 301 B
/*\ title: relative/program.js type: application/javascript module-type: library Relative test \*/ var test = require("test"); var a = require("submodule/a"); var b = require("submodule/b"); test.assert(a.foo == b.foo, "a and b share foo through a relative require"); test.print("DONE", "info");