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