Files
shields/services/test-helpers.js
chris48s 362db466bb update service tests tutorial (#2075)
* update service tests tutorial
* re-order and re-name tests for clarity
* update documentation examples
* extract boilerplate for testing colours
2018-10-01 20:53:04 +01:00

8 lines
185 B
JavaScript

'use strict'
const colorscheme = require('../lib/colorscheme.json')
const mapValues = require('lodash.mapvalues')
module.exports = {
colorScheme: mapValues(colorscheme, 'colorB'),
}