X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/32ec81f6370328833fd0ba3dfe1c2974ac775973..66dc4cae4cd37e82d773dc30be046d82d380ec4d:/test/application.js?ds=sidebyside diff --git a/test/application.js b/test/application.js new file mode 100644 index 0000000..c02b914 --- /dev/null +++ b/test/application.js @@ -0,0 +1,13 @@ +const { expect } = require('@hapi/code'); +const Lab = require('@hapi/lab'); +const Forum = require('../lib/forum'); + +const { it, describe } = exports.lab = Lab.script(); + +describe('Forum Backend Library', () => { + + it('Should initialize the server', () => { + + expect(true).to.equal(true); + }); +});