notes and minor tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-08-14 15:59:52 +03:00
parent f5295ce3ae
commit 3c39cd69fd
2 changed files with 5 additions and 7 deletions

View File

@ -33,8 +33,7 @@ tests.Setups({
tests.Test('dummy', tests.Test('dummy',
function(assert, setup){ function(assert, setup){
assert(true, 'dummy: assert') assert(true, 'dummy: assert') })
})

View File

@ -31,11 +31,11 @@ module.DEFAULT_TEST_FILES = '**/?(*-)test.js'
// NOTE: to test in verbose mode do: // NOTE: to test in verbose mode do:
// $ export VERBOSE=1 && npm test // $ VERBOSE=1 npm test
// or // or
// $ export VERBOSE=1 && node test.js // $ VERBOSE=1 node test.js
// or set this manually after require('./test') but before running // or set this manually after require('./test') but before calling
// the runner(..) // the runner(..) or run(..)
// NOTE: this may change in the future... // NOTE: this may change in the future...
module.VERBOSE = process ? module.VERBOSE = process ?
process.env.VERBOSE process.env.VERBOSE
@ -181,7 +181,6 @@ var mergeIter = function(iter){
// -> merged // -> merged
// //
// //
// XXX is this the right name for this??
var Merged = var Merged =
module.Merged = module.Merged =
object.Constructor('Merged', { object.Constructor('Merged', {