ts-ci/src/test/myObject.ts

8 lines
195 B
TypeScript
Raw Normal View History

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 "..";
2020-05-27 22:02:44 +02:00
assert(inDepth.same(myObject, { "p": "FOO" }));
2020-05-14 00:47:15 +02:00
console.log("PASS");