import { expect } from 'chai'; import * as util from '.'; describe('util', () => { it('has universal libs', () => { expect(util.Rx).not.to.equal(undefined); }); it('has server libs', () => { expect(util.express).not.to.equal(undefined); expect(util.fs).not.to.equal(undefined); expect(util.fsPath).not.to.equal(undefined); expect(util.yaml).not.to.equal(undefined); }); });