UNPKG

nightwatch

Version:

Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.

13 lines (10 loc) 214 B
const assert = require('assert'); module.exports = { '@unitTest': true, 'demo UnitTest': function (done) { assert.strictEqual('TEST', 'TEST'); setTimeout(function() { done(); }, 10); } };