coz-bud-loader
Version:
Bud loader for coz.
29 lines (20 loc) • 458 B
JavaScript
/**
* Test case for makeupBud.
* Runs with mocha.
*/
const makeupBud = require('../lib/makeup_bud.js')
const assert = require('assert')
describe('makeup bud', () => {
before(async () => {
})
after(async () => {
})
it('Makeup bud', async () => {
let buds = await makeupBud([
{ data: { 'foo': 'bar' } }
])
assert.deepEqual(buds, [ { data: { foo: 'bar' } } ])
})
})
/* global describe, before, after, it */