serverless/lib/plugins/aws/lib/cloudformationSchema.test.js
2018-09-30 11:49:42 +03:00

21 lines
473 B
JavaScript

'use strict';
const expect = require('chai').expect;
const cloudformationSchema = require('./cloudformationSchema');
describe('#cloudformationSchame()', () => {
describe('#schema()', () => {
it('should contain schema', () => {
expect(Object.keys(cloudformationSchema.schema)).to.be.eql([
'include',
'implicit',
'explicit',
'compiledImplicit',
'compiledExplicit',
'compiledTypeMap',
]);
});
});
});