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