1
0
Fork 0
toolkit/packages/attest/__tests__/attest.test.ts

17 lines
432 B
TypeScript
Raw Permalink Normal View History

import {attest} from '../src/attest'
describe('attest', () => {
describe('when no subject information is provided', () => {
it('throws an error', async () => {
const options = {
predicateType: 'foo',
predicate: {bar: 'baz'},
token: 'token'
}
expect(attest(options)).rejects.toThrowError(
'Must provide either subjectName and subjectDigest or subjects'
)
})
})
})