aboutsummaryrefslogtreecommitdiff
path: root/src/util/codec-test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/codec-test.ts')
-rw-r--r--src/util/codec-test.ts12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/util/codec-test.ts b/src/util/codec-test.ts
index 7c7c93c7b..e25a9d3cd 100644
--- a/src/util/codec-test.ts
+++ b/src/util/codec-test.ts
@@ -19,7 +19,13 @@
*/
import test from "ava";
-import { Codec, makeCodecForObject, makeCodecForConstString, codecForString, makeCodecForUnion } from "./codec";
+import {
+ Codec,
+ makeCodecForObject,
+ makeCodecForConstString,
+ codecForString,
+ makeCodecForUnion,
+} from "./codec";
interface MyObj {
foo: string;
@@ -37,7 +43,7 @@ interface AltTwo {
type MyUnion = AltOne | AltTwo;
-test("basic codec", t => {
+test("basic codec", (t) => {
const myObjCodec = makeCodecForObject<MyObj>()
.property("foo", codecForString)
.build("MyObj");
@@ -49,7 +55,7 @@ test("basic codec", t => {
});
});
-test("union", t => {
+test("union", (t) => {
const altOneCodec: Codec<AltOne> = makeCodecForObject<AltOne>()
.property("type", makeCodecForConstString("one"))
.property("foo", codecForString)