2016-12-16 02:10:43 +09:00
|
|
|
/* globals checkProblematicCharRanges */
|
2016-08-13 19:20:03 +09:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
describe('Fonts', function() {
|
|
|
|
it('checkProblematicCharRanges', function() {
|
|
|
|
var EXPECTED_PERCENTAGE = 45;
|
|
|
|
var result = checkProblematicCharRanges();
|
|
|
|
|
|
|
|
expect(result.percentage).toBeLessThan(EXPECTED_PERCENTAGE);
|
|
|
|
});
|
|
|
|
});
|