mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
15 lines
228 B
JavaScript
15 lines
228 B
JavaScript
/*\
|
|
title: nested/program.js
|
|
type: application/javascript
|
|
module-type: library
|
|
|
|
Nested test
|
|
|
|
\*/
|
|
|
|
|
|
var test = require('test');
|
|
test.assert(require('a/b/c/d').foo() == 1, 'nested module identifier');
|
|
test.print('DONE', 'info');
|
|
|