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 527 B
import { encodeDefaultProposalType, decodeDefaultProposalType, } from "../../src/defaultProposalType"; import { createRoundtripTest } from "./roundtrip"; describe("ProposalTypeName roundtrip", () => { const roundtrip = createRoundtripTest(encodeDefaultProposalType, decodeDefaultProposalType); test("roundtrips add", () => { roundtrip("add"); }); test("roundtrips group_context_extensions", () => { roundtrip("group_context_extensions"); }); }); //# sourceMappingURL=proposalType.test.js.map