@incdevco/framework
Version:
node.js lambda framework
24 lines (12 loc) • 476 B
JavaScript
var CloudFormationCustomResource = require('../cloud-formation-custom-resource');
var Expect = require('chai').expect;
var Lambda = require('./index').Lambda;
describe('lambda custom-cf-resource', function () {
var lambda;
beforeEach(function () {
lambda = new Lambda();
});
it('should be instanceof of CloudFormationCustomResource', function () {
Expect(lambda).to.be.instanceof(CloudFormationCustomResource);
});
});