test-helper.js 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const constants = require('../tests/constants'); global.expect = require('expect.js'); global.fs = require('fs'); global.path = require('path'); global.Tesseract = require('../src'); Object.keys(constants).forEach((key) => { global[key] = constants[key]; });