12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { expect } from 'chai'
|
|
import { Waku } from 'js-waku'
|
|
import WakuVoting from '../src'
|
|
|
|
describe('WakuVoting', () => {
|
|
it('success', async () => {
|
|
const wakuVoting = await WakuVoting.create('test', '0x0', {} as unknown as Waku)
|
|
|
|
expect(wakuVoting).to.not.be.undefined
|
|
})
|
|
})
|