19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
import {dom, textSizerFactory} from '../../../spec/stubs/TestDOM.mjs';
|
|
import {Factory} from './Chunky.mjs';
|
|
import SVG from '../../svg/SVG.mjs';
|
|
|
|
describe('Chunky Theme', () => {
|
|
const svg = new SVG(dom, textSizerFactory);
|
|
|
|
const themeFactory = new Factory();
|
|
const theme = themeFactory.build(svg);
|
|
|
|
it('has a name', () => {
|
|
expect(themeFactory.name).toEqual('chunky');
|
|
});
|
|
|
|
it('contains settings for the theme', () => {
|
|
expect(theme.outerMargin).toEqual(5);
|
|
});
|
|
});
|