mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
14 lines
588 B
JavaScript
14 lines
588 B
JavaScript
'use strict'
|
|
|
|
const { expect } = require('chai')
|
|
const serviceCommonOptions = require('../../../../../../lib/cli/commands-schema/common-options/service')
|
|
|
|
describe('test/unit/lib/cli/commands-schema/common-options/service.test.js', () => {
|
|
it('should expose global common options', () =>
|
|
expect(serviceCommonOptions).to.have.property('help'))
|
|
it('should expose service common options', () =>
|
|
expect(serviceCommonOptions).to.have.property('config'))
|
|
it('should not expose AWS service common options', () =>
|
|
expect(serviceCommonOptions).to.not.have.property('region'))
|
|
})
|