diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/application.js | 13 | ||||
| -rw-r--r-- | test/forum.js | 13 |
2 files changed, 26 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); + }); +}); diff --git a/test/forum.js b/test/forum.js new file mode 100644 index 0000000..c02b914 --- /dev/null +++ b/test/forum.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); + }); +}); |