2d2e41ac76
- added export to index.js - fixed all paths to match the new structure - replaced should with testUtils - changed name from manipulator to transform
14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
/**
|
|
* Test Utilities
|
|
*
|
|
* Shared utils for writing tests
|
|
*/
|
|
|
|
// Require overrides - these add globals for tests
|
|
require('./overrides');
|
|
|
|
// Require assertions - adds custom should assertions
|
|
require('./assertions');
|
|
|
|
module.exports.modules = require('./modules');
|