chart.js
Version:
Simple HTML5 charts using the canvas element.
23 lines (18 loc) • 420 B
JavaScript
describe('Core.scale', function() {
describe('auto', jasmine.specsFromFixtures('core.scale'));
it('should provide default scale label options', function() {
expect(Chart.defaults.scale.scaleLabel).toEqual({
// display property
display: false,
// actual label
labelString: '',
// actual label
lineHeight: 1.2,
// top/bottom padding
padding: {
top: 4,
bottom: 4
}
});
});
});