13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
/* globals checkProblematicCharRanges */
|
|
|
|
'use strict';
|
|
|
|
describe('Fonts', function() {
|
|
it('checkProblematicCharRanges', function() {
|
|
var EXPECTED_PERCENTAGE = 45;
|
|
var result = checkProblematicCharRanges();
|
|
|
|
expect(result.percentage).toBeLessThan(EXPECTED_PERCENTAGE);
|
|
});
|
|
});
|