aboutsummaryrefslogtreecommitdiff
path: root/test/application.js
blob: c02b9148ed52e5fbf9bf32dafceaf05f8e996399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
  });
});