UNPKG

@trust/keyto

Version:

A utility for translating cryptographic keys between representations

34 lines (28 loc) 484 B
/** * Test Dependencies * @ignore */ const cwd = process.cwd() const path = require('path') const chai = require('chai') const expect = chai.expect /** * Assertions * @ignore */ chai.should() /** * Code Under Test * @ignore */ const SupportedAsnTypes = require(path.join(cwd, 'src', 'asn1', 'SupportedAsnTypes')) const supportedAsnTypes = require(path.join(cwd, 'src', 'asn1')) /** * Test Consts * @ignore */ /** * Tests */ describe('SupportedAsnTypes', () => { })