2021-08-09 11:57:02 +02:00

12 lines
276 B
TypeScript

import { expect } from 'chai'
import { Waku } from 'js-waku'
import WakuVoting from '../src'
describe('WakuVoting', () => {
it('success', async () => {
const wakuVoting = new WakuVoting('test', {} as unknown as Waku)
expect(wakuVoting).to.not.be.undefined
})
})