From 66dc4cae4cd37e82d773dc30be046d82d380ec4d Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 26 Jan 2020 16:33:43 +0100 Subject: Add skeleton for topic Tested with VoiceOver --- test/application.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/application.js (limited to 'test/application.js') 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); + }); +}); -- cgit