UNPKG

@hcl-software/node-red-domino

Version:
25 lines (20 loc) 797 B
/* ========================================================================== * * Copyright (C) 2023 HCL America Inc. * * Apache-2.0 license https://www.apache.org/licenses/LICENSE-2.0 * * ========================================================================== */ 'use strict'; const chai = require('chai'); const chaiAsPromised = require('chai-as-promised'); const expect = chai.expect; chai.use(chaiAsPromised); describe('These tests', function () { it('should always pass', function () { expect(1).to.equal(1); }); const p = new Promise((resolve) => { setTimeout(() => resolve(42), 100); }); it('also the promise should always pass', function (done) { expect(p).to.eventually.be.eql(42).notify(done); }); });