mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
17 lines
248 B
JavaScript
17 lines
248 B
JavaScript
|
/*\
|
||
|
title: exactExports/program.js
|
||
|
type: application/javascript
|
||
|
module-type: library
|
||
|
|
||
|
ExactExports test
|
||
|
|
||
|
\*/
|
||
|
|
||
|
|
||
|
|
||
|
var test = require('test');
|
||
|
var a = require('./a');
|
||
|
test.assert(a.program() === exports, 'exact exports');
|
||
|
test.print('DONE', 'info');
|
||
|
|