2c1417da88
- Minimal working version of a job manager - Uses fastq for handling the queue - Exposes 2 methods: addJob and shutdown
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');
|