test.js 263 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /* global describe, it, before, expect */ require('./setup') describe('my library', function () { var mylib before(function () { mylib = require('mylib') || window.mylib }) it('works', function () { expect(mylib.greet()).to.eql('hola') }) })