@tiwarivikram/meanio
Version:
Extracted functionality for MEAN.io
16 lines (12 loc) • 344 B
JavaScript
var chai = require('chai'),
expect = chai.expect
var Menus = require('../../lib/core_modules/menu')
describe('Menus', function () {
describe('Functions', function () {
it('should have expected functions', function () {
expect(Menus.prototype.add).to.exist
expect(Menus.prototype.get).to.exist
})
})
})