mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import fetch from 'node-fetch'
|
|
import {nip39} from '.'
|
|
|
|
test('validate github claim', async () => {
|
|
nip39.useFetchImplementation(fetch)
|
|
|
|
let result = await nip39.validateGithub(
|
|
'npub1gcxzte5zlkncx26j68ez60fzkvtkm9e0vrwdcvsjakxf9mu9qewqlfnj5z',
|
|
'vitorpamplona',
|
|
'cf19e2d1d7f8dac6348ad37b35ec8421'
|
|
)
|
|
expect(result).toBe(true)
|
|
})
|