mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
/* globals describe, it, expect, checkProblematicCharRanges */
|
|
|
|
'use strict';
|
|
|
|
describe('Fonts', function() {
|
|
it('checkProblematicCharRanges', function() {
|
|
var EXPECTED_PERCENTAGE = 45;
|
|
var result = checkProblematicCharRanges();
|
|
|
|
expect(result.percentage).toBeLessThan(EXPECTED_PERCENTAGE);
|
|
});
|
|
});
|