yabaas
Version:
Yet Another Backend as a Service
18 lines (12 loc) • 296 B
JavaScript
/**
* Test the slug module
*/
/* eslint-env mocha */
const debug = require('debug')('yabaas:slug:test') // eslint-disable-line
const should = require('should') // eslint-disable-line
const slug = require('./index')
describe('Slug', () => {
it('hello', () => {
slug.hello()
})
})