Add text utility spec

This commit is contained in:
Clement Ho 2016-12-14 14:37:17 -06:00
parent 3cb156dd45
commit 4577f1f174
2 changed files with 25 additions and 1 deletions

View file

@ -52,6 +52,5 @@
expect(value).toBe(null);
});
});
});
})();

View file

@ -0,0 +1,25 @@
//= require lib/utils/text_utility
(() => {
describe('text_utility', () => {
describe('gl.text.getTextWidth', () => {
it('returns zero width when no text is passed', () => {
expect(gl.text.getTextWidth('')).toBe(0);
});
it('returns zero width when no text is passed and font is passed', () => {
expect(gl.text.getTextWidth('', '100px sans-serif')).toBe(0);
});
it('returns width when text is passed', () => {
expect(gl.text.getTextWidth('foo') > 0).toBe(true);
});
it('returns bigger width when font is larger', () => {
const largeFont = gl.text.getTextWidth('foo', '100px sans-serif');
const regular = gl.text.getTextWidth('foo', '10px sans-serif');
expect(largeFont > regular).toBe(true);
});
});
});
})();