ts-ci/src/test/myObject.ts

18 lines
239 B
TypeScript
Raw Normal View History

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