mirror of
https://github.com/foliojs/pdfkit.git
synced 2025-12-08 20:15:54 +00:00
* Fix further LineWrapper precision issues * add test of bounded text precision issue * add rowSpanning table example * add failure threshold * implement toContainText jest matcher * create a unit test for bounded text precision * remove round up rounding code path --------- Co-authored-by: Luiz Américo Pereira Câmara <blikblum@users.noreply.github.com>
8 lines
255 B
JavaScript
8 lines
255 B
JavaScript
import toContainChunk from './toContainChunk';
|
|
import toContainText from './toContainText';
|
|
import { toMatchImageSnapshot } from 'jest-image-snapshot';
|
|
|
|
expect.extend(toContainChunk);
|
|
expect.extend(toContainText);
|
|
expect.extend({ toMatchImageSnapshot });
|