mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
21 lines
473 B
JavaScript
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',
|
|
]);
|
|
});
|
|
});
|
|
});
|