2016-10-05 12:53:14 -07:00

20 lines
439 B
JavaScript

'use strict';
const expect = require('chai').expect;
const Install = require('../install.js');
const Serverless = require('../../../Serverless');
describe('Install', () => {
let install;
let serverless;
beforeEach(() => {
serverless = new Serverless();
install = new Install(serverless);
});
describe('#constructor()', () => {
it('should have commands', () => expect(install.commands).to.be.not.empty);
});
});