mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-01 11:36:42 +00:00
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
|
import { expect } from './lib/chai-config';
|
||
|
import * as ComposeUtils from '../src/compose/utils';
|
||
|
|
||
|
describe('Composition utilities', () =>
|
||
|
it('Should correctly camel case the configuration', function() {
|
||
|
const config = {
|
||
|
networks: ['test', 'test2'],
|
||
|
};
|
||
|
|
||
|
expect(ComposeUtils.camelCaseConfig(config)).to.deep.equal({
|
||
|
networks: ['test', 'test2'],
|
||
|
});
|
||
|
}));
|