UNPKG

404 BPlain TextView Raw
1import { expect } from 'chai';
2import * as util from '.';
3
4describe('util', () => {
5 it('has universal libs', () => {
6 expect(util.Rx).not.to.equal(undefined);
7 });
8
9 it('has server libs', () => {
10 expect(util.express).not.to.equal(undefined);
11 expect(util.fs).not.to.equal(undefined);
12 expect(util.fsPath).not.to.equal(undefined);
13 expect(util.yaml).not.to.equal(undefined);
14 });
15});