ts-ci/src/test/myObject.ts

18 lines
229 B
TypeScript
Raw Normal View History

2020-05-14 00:47:15 +02:00
2020-05-22 17:49:14 +02:00
import { assert } from "evt/tools/typeSafety";
import * as inDepth from "evt/tools/inDepth";
2020-05-14 00:47:15 +02:00
import { myObject } from "..";
assert(
inDepth.same(
myObject,
{ "p": "FOO" }
)
);
console.log("PASS");