mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
import { assert } from "evt/tools/typeSafety";
|
|
import * as inDepth from "evt/tools/inDepth";
|
|
import { myObject } from "..";
|
|
|
|
assert(inDepth.same(myObject, { "p": "FOO" }));
|
|
|
|
console.log("PASS");
|