mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
21 lines
430 B
JavaScript
21 lines
430 B
JavaScript
'use strict';
|
|
|
|
const expect = require('chai').expect;
|
|
const Deploy = require('../deploy');
|
|
const Serverless = require('../../../Serverless');
|
|
|
|
|
|
describe('Deploy', () => {
|
|
let deploy;
|
|
let serverless;
|
|
|
|
beforeEach(() => {
|
|
serverless = new Serverless();
|
|
deploy = new Deploy(serverless);
|
|
});
|
|
|
|
describe('#constructor()', () => {
|
|
it('should have commands', () => expect(deploy.commands).to.be.not.empty);
|
|
});
|
|
});
|