mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
12 lines
363 B
JavaScript
12 lines
363 B
JavaScript
'use strict';
|
|
|
|
const { expect } = require('chai');
|
|
|
|
const isDashboardEnabled = require('../../../../lib/configuration/is-dashboard-enabled');
|
|
|
|
describe('test/unit/lib/configuration/is-dashboard-enabled.test.js', () => {
|
|
it('should return boolean', () => {
|
|
expect(typeof isDashboardEnabled({ configuration: {}, options: {} })).to.equal('boolean');
|
|
});
|
|
});
|