Merge pull request #11 from frantic/keep-consts-in-sync

Add test that makes sure text consts are in sync
This commit is contained in:
Christopher Chedeau
2014-09-27 07:19:19 -07:00
3 changed files with 26 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
/* globals layoutTestUtils */
var textSizes = layoutTestUtils.textSizes;
var preDefinedTextSizes = layoutTestUtils.preDefinedTextSizes;
describe('Layout tests consts', function() {
it('keeps browser text measurements in sync with predefined consts', function() {
expect(preDefinedTextSizes).toEqual(
textSizes,
'Looks like browser has updated its text measurements functions. ' +
'You need to update `preDefinedTextSizes` in Layout-test-utils.js'
);
});
});