More voting stuff, start moving to typescript

This commit is contained in:
Mikah Chapman
2021-03-14 21:02:22 -06:00
parent 4ad8380f55
commit 185789baad
8 changed files with 1697 additions and 32 deletions

7
poll-master.spec.ts Normal file
View File

@@ -0,0 +1,7 @@
const {describe} = require("mocha");
const poll = require('poll-master')
describe('Poll master', () => {
it('can create poll', () => {
poll.registerNewPoll()
})
})