diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-01-26 16:33:43 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-01-26 16:33:43 +0100 |
| commit | 66dc4cae4cd37e82d773dc30be046d82d380ec4d (patch) | |
| tree | 89723b2fa1505907a3998f8cbe81fd5448614ef6 /test/application.js | |
| parent | 32ec81f6370328833fd0ba3dfe1c2974ac775973 (diff) | |
Add skeleton for topic
Tested with VoiceOver
Diffstat (limited to 'test/application.js')
| -rw-r--r-- | test/application.js | 13 |
1 files changed, 13 insertions, 0 deletions
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); + }); +}); |