12 lines
276 B
TypeScript
Raw Normal View History

2021-08-06 14:50:36 +02:00
import { expect } from 'chai'
2021-08-09 11:57:02 +02:00
import { Waku } from 'js-waku'
import WakuVoting from '../src'
2021-08-06 14:50:36 +02:00
2021-08-09 11:57:02 +02:00
describe('WakuVoting', () => {
it('success', async () => {
const wakuVoting = new WakuVoting('test', {} as unknown as Waku)
expect(wakuVoting).to.not.be.undefined
2021-08-06 14:50:36 +02:00
})
})