Skip to content

Instantly share code, notes, and snippets.

@vdeturckheim
Created February 6, 2018 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vdeturckheim/77f1631a7a0b5a90a24d1dba70771109 to your computer and use it in GitHub Desktop.
Save vdeturckheim/77f1631a7a0b5a90a24d1dba70771109 to your computer and use it in GitHub Desktop.
'use strict';
const Code = require('code');
const expect = Code.expect;
const Lab = require('lab');
const lab = module.exports.exports.lab = Lab.script();
const after = lab.after;
const before = lab.before;
const describe = lab.describe;
const it = lab.it;
describe('math', () => {
before(() => {});
after(() => {});
it('returns true when 1 + 1 equals 2', () => {
expect(1 + 1).to.equal(2);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment