Skip to content
Permalink
fa85284f92
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (13 sloc) 372 Bytes
'use strict'
const Home = require('../modules/home.js')
//const Forums = require('../modules/forum.js')
//const Accounts = require('../modules/user.js')
//const sqlite = require('sqlite-async')
describe('Home()', () => {
test('Initlise the home page', async done => {
expect.assertions(1)
const home = await new Home()
expect(home).toBe(true)
done()
})
})