const test = require('tape') const isPosition = require('../../../isPosition') const { CHOOSE_ONE } = require('../../../types') // this is for testing the attributes that are required for all polls test('position - common requirements', function (t) { var missingDetails = { type: 'position', poll: '%t+PhrNxxXkw/jMo6mnwUWfFjJapoPWxzsQoe0Np+nYw=.sha256', details: undefined } t.false(isPosition(missingDetails), 'needs details') t.true(isPosition.errors, 'failing validations have errors') var missingPoll = { type: 'position', details: { type: CHOOSE_ONE, choice: 0 } } t.false(isPosition(missingPoll), 'needs poll') t.end() })