014469f49b
- History merged from Ghost, setup package structure and added a test - This is exactly the kind of code that we should keep separate to Ghost, as it's rarely touched - It's much easier to reason about and test when it's on its own
12 lines
219 B
JavaScript
12 lines
219 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');
|