test-helper.js 262 B

123456789
  1. const constants = require('../tests/constants');
  2. global.expect = require('expect.js');
  3. global.fs = require('fs');
  4. global.path = require('path');
  5. global.Tesseract = require('../src');
  6. Object.keys(constants).forEach((key) => {
  7. global[key] = constants[key];
  8. });