mirror of
https://github.com/status-im/dappconnect-vote-poll-sdk.git
synced 2025-01-29 06:25:34 +00:00
12 lines
283 B
TypeScript
12 lines
283 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', '0x0', {} as unknown as Waku)
|
|
|
|
expect(wakuVoting).to.not.be.undefined
|
|
})
|
|
})
|