Absence of tests should not prevent CI linting.

This commit is contained in:
Julien Fontanet 2016-02-10 10:31:30 +01:00
parent 03a33646d6
commit 20919a8a39

View File

@ -8,6 +8,10 @@ import myLib from './'
// ===================================================================
describe('myLib', () => {
// TODO
describe.skip('myLib', () => {
it('does something', () => {
// TODO: some real tests.
expect(myLib).to.exists()
})
})