/* globals describe, it */ const assert = require('assert').strict; describe('Testing', () => { it('should have tests', (done) => { assert(false, 'No tests yet on testing'); done(); }); });