UNPKG

ts-mls

Version:

[![CI](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml/badge.svg)](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [![npm version](https://badge.fury.io/js/ts-mls.svg)](https://badge.fury.io/js/ts-mls) [![Coverage Status](https://co

12 lines 469 B
import { encodeCredentialType, decodeCredentialType } from "../../src/credentialType"; import { createRoundtripTest } from "./roundtrip"; describe("CredentialTypeName roundtrip", () => { const roundtrip = createRoundtripTest(encodeCredentialType, decodeCredentialType); test("roundtrips basic", () => { roundtrip("basic"); }); test("roundtrips x509", () => { roundtrip("x509"); }); }); //# sourceMappingURL=credentialType.test.js.map