import { expect } from 'chai'; import * as lambdaless from '../src'; describe('an empty test', () => { it('should pass', () => { expect(true).to.equal(true); }) }); describe('lambdaless', () => { it('should have loaded', () => { expect(lambdaless).to.not.be.null; }); });