Add empty test file.

This commit is contained in:
Julien Fontanet 2016-03-15 16:25:46 +01:00
parent fe7a9104a8
commit 3527b86ec5

View File

@ -0,0 +1,17 @@
/* eslint-env mocha */
import expect from 'must'
// ===================================================================
import myLib from './'
// ===================================================================
describe.skip('myLib', () => {
it('does something', () => {
// TODO: some real tests.
expect(myLib).to.exists()
})
})