UNPKG

378 BJavaScriptView Raw
1/*jshint expr: true*/
2
3var amalgamatic = require('../index.js');
4
5var Lab = require('lab');
6var lab = exports.lab = Lab.script();
7
8var expect = Lab.expect;
9var describe = lab.experiment;
10var it = lab.test;
11
12describe('amalgamatic', function () {
13
14 it('should have a search property', function (done) {
15 expect(typeof amalgamatic.search).to.equal('function');
16 done();
17 });
18});