03b1e9c3bd
- wired up a basic minification package - accepts config for css or js files and can concat and minify them into a single file for each type - this will be used for generating merged css and js files for various cards, controlled by theme config
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');
|