9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
import chai from 'chai'
|
|
|
|
const expect = chai.expect
|
|
|
|
describe('Round Plugin Tests', () => {
|
|
it('FIXME: No plugin tests configured', () => {
|
|
expect(1).to.equal(1)
|
|
})
|
|
})
|