mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
42 lines
919 B
JavaScript
42 lines
919 B
JavaScript
'use strict';
|
|
|
|
const chai = require('chai');
|
|
const Info = require('./info');
|
|
const Serverless = require('../../Serverless');
|
|
const sinon = require('sinon');
|
|
|
|
const expect = chai.expect;
|
|
chai.use(require('chai-as-promised'));
|
|
chai.use(require('sinon-chai'));
|
|
|
|
describe('Info', () => {
|
|
let info;
|
|
let serverless;
|
|
|
|
beforeEach(() => {
|
|
serverless = new Serverless();
|
|
info = new Info(serverless);
|
|
});
|
|
|
|
describe('#constructor()', () => {
|
|
it('should have commands', () => expect(info.commands).to.be.not.empty);
|
|
});
|
|
|
|
describe('"after:info:info" hook', () => {
|
|
let trackStub;
|
|
|
|
beforeEach(() => {
|
|
trackStub = sinon.stub(info, 'track').resolves();
|
|
});
|
|
|
|
afterEach(() => {
|
|
info.track.restore();
|
|
});
|
|
|
|
it('should run the validation', () =>
|
|
expect(info.hooks['after:info:info']()).to.be.fulfilled.then(
|
|
() => expect(trackStub).to.be.called
|
|
));
|
|
});
|
|
});
|