One dev dependency to run ESLint, your test.js, coverage and report to Coveralls.io
npm install dotestOne dev dependency for your Node.js package to run ESLint,
your test.js, coverage and report to Coveralls.io when running in a CI environment.



* It runs ESLint with your package's eslint.config.mjs file
* Then it runs your test.js with nyc to generate a coverage report
* When it detects the code is running in a CI it will also submit the coverage report to Coveralls.io
* In case it runs in a Github action the warning, fail and error lines are highlighted
test.js
``js
// Load test runner and your app
const doTest = require( 'dotest' );
const app = require( './' );
// Check app interface
doTest.add( 'App interface', test => {
test()
.isFunction( 'fail', 'methodOne', app.methodOne )
.isObject( 'fail', 'sub', app.sub )
.isFunction( 'fail', 'sub.methodTwo', app.sub.methodTwo )
.done()
;
} );
// Check method response
doTest.add( 'App methodOne', test => {
app.methodOne( ( err, data ) => {
test( err )
.isObject( 'fail', 'Callback data', data )
.isArray( 'fail', 'data.music', data.music )
.isNotEmpty( 'warn', 'data.music', data.music )
.done()
;
} );
} );
// Check promise
doTest.add( 'Promise good', async test => {
let error;
let data;
try {
data = await myPromise();
}
catch ( err ) {
error = err;
}
test( error )
.isObject( 'fail', 'data', data );
.done()
;
} );
// Run the tests
doTest.run();
`
package.json
Full test including ESLint, test.js, coverage report and Coveralls.io submit.
`json`
"scripts": {
"test": "dotest"
}
Or just run your test.js
`json`
"scripts": {
"test": "node test.js"
}
Just run npm test
This is usually intended for CI builds,
so best to make sure it's in your devDependencies
`sh`
npm i dotest --save-dev
The script takes these env variables. They override the code settings.
name | default | description
:----------------------|:-----------------|:-----------
[DOTEST_WAIT] | 0 | Pause N ms between tests
[DOTEST_NOCOV] | | Set to 'true' to skip coverage report
[DOTEST_MINCOV] | 85 | Minimum coverage % default
[DOTEST_COVBRANCHES] | $DOTEST_MINCOV | Minimum coverage % for branches$DOTEST_MINCOV
[DOTEST_COVLINES] | | Minimum coverage % for lines$DOTEST_MINCOV
[DOTEST_COVFUNCTIONS] | | Minimum coverage % for functions$DOTEST_MINCOV
[DOTEST_COVSTATEMENTS] | | Minimum coverage % for statements
Add a new test to the queue.
`js`
doTest.add( 'App interface', test => {
test()
.isArray( 'fail', 'my array', [] )
.done()
;
} );
Run the tests from the queue, one by one.
param | type | default | description
:------|:-------|:--------|:-----------
[wait] | number | 0 | Wait N ms between tests
`js
// Normal, without pause between tests
doTest.run();
// Or wait 2 seconds
doTest.run( 2000 );
`
Fancy console.log with style.
param | type | default | description
:-----------|:--------|:--------|:-----------
[type] | string | plain | Text style to apply, see below
str | string | | The string to output
[dontCount] | boolean | false | Don't count a fail or error towards the exit status
style | description
:-----|:-----------
fail | FAIL Text with _FAIL_ in redgood Text
good | with _good_ in greenwarn Text
warn | with _warn_ in yellowinfo Text
info | with _info_ in cyanText
note | with _Text_ in boldERROR Error.message\nError\nError.stack
error | with _ERROR_ in red
plain | No styling
The styles error, fail and warn add to the _errors_ and _warnings_ counters,error
where and fail also cause the script to fail.
`js`
// Bold text
doTest.log( 'note', 'Hello world' );
Force exit the process, after writing statistics to the console.
`js`
doTest.exit();
Returns check functions.
Optionally test for err instance of Error and dump it to the console.
The check functions take a level parameter.fail
When set to the check reports _fail_ and the whole test script will eventually fail.warn
When set to the check reports _warn_ but won't cause the script to fail.
You can concat the check functions for clean code.
`js
// Using the method
doTest.add( 'App interface', () => {
doTest.test()
.isObject( 'fail', 'Callback data', data )
.done()
;
} );
// Or using the shortcut
doTest.add( 'App interface', test => {
test()
.isObject( 'fail', 'Callback data', data )
.done()
;
} );
`
Run the next test from the queue.
Optionally run a callback function before the next test.
See example above.
Alias to dotest.exit().
Works similar to .done() where it ends the test,.exit()
but also ends the whole script.
`js`
test()
.isArray( 'fail', 'data', [] )
.exit()
;
Output 'info' log line.
The message can be of any type.message
When it is not a string, the type is written instead
and the full value of dumped right below.
`js
test()
.info( { hello: 'world' } )
.done()
;
// Output:
// info Object
// { hello: 'world' }
`
Output 'good' log line.
The message can be of any type.message
When it is not a string, the type is written instead
and the full value of dumped right below.
`js
test()
.good( 'It works great' )
.done()
;
// Output:
// good It works great
`
Output 'warn' log line.
The message can be of any type.message
When it is not a string, the type is written instead
and the full value of dumped right below.
`js
test()
.warn( 'Hmm something odd happened' )
.done()
;
// Output:
// warn Hmm something odd happend
`
Output 'FAIL' log line.
The message can be of any type.message
When it is not a string, the type is written instead
and the full value of dumped right below.
`js
test()
.fail( 'We have a problem' )
.done()
;
// Output:
// FAIL We have a problem
`
Output 'ERROR' log line with dump and stack trace.
`js
const err = new Error( 'Oops' );
test()
.error( err )
.done()
;
// Output:
// ERROR Oops
//
// [Error: Oops]
// ...
`
Check if input is an instance of _Error_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isError( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _Object_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isObject( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _Array_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isArray( 'fail', 'My data', data )
.done()
;
Check if input is a _string_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isString( 'fail', 'My data', data )
.done()
;
Check if input is a _number_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isNumber( 'fail', 'My data', data )
.done()
;
Check if input is _undefined_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
function ( err, data ) {
test()
.isUndefined( 'warn', 'My data', data )
.done()
;
}
Check if input is _null_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
function ( err, data ) {
test()
.isNull( 'warn', 'My data', data )
.done()
;
}
Check if input is _NaN_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
function ( err, data ) {
test()
.isNaN( 'warn', 'My data', data )
.done()
;
}
Check if input is a _boolean_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isBoolean( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _Function_ or _AsyncFunction_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isFunction( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _Function_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isFunction( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _AsyncFunction_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
test()
.isAsyncFunction( 'fail', 'My data', data )
.done()
;
Check if input is an instance of _Date_.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js
const myDate = new Date();
test()
.isDate( 'fail', 'My data', myDate )
.done()
;
`
Check if one is exactly of the same type and value as two.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
one | mixed | The variable to check
two | mixed | The variable to check against
`js`
test()
.isExactly( 'fail', 'My data', 'foo', 'bar' )
.done()
;
Check if the two values meet the condition.
param | type | description
:--------|:-------|:-----------
level | string | Either fail or warn<
what | string | Text to prepend to check result
one | mixed | Variable to test against
operator | string | , >, <=, >=
two | mixed | Variable to test against
`js`
test()
.isCondition( 'fail', 'My data', 1, '<', 2 )
.done()
;
Check if input is _undefined_, _null_, or an empty _string_, _object_, _array_ or _Error_.input.message
In case of _Error_ the and Object.keys( input ) are checked.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js`
// Object is empty
test()
.isEmpty( 'fail', 'My data', {} )
.done()
;
Check if input is not _undefined_, _null_, or an empty _string_, _object_, _array_ or _Error_.input.message
In case of _Error_ the and Object.keys( input ) are checked.
param | type | description
:-----|:-------|:-----------
level | string | Either fail or warn
what | string | Text to prepend to check result
input | mixed | The variable to check
`js``
// Object is not empty
test()
.isNotEmpty( 'fail', 'My data', { foo: 'bar' } )
.done()
;
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to