mirror of
https://github.com/garronej/ts-ci.git
synced 2025-12-01 05:43:06 +00:00
18 lines
239 B
TypeScript
18 lines
239 B
TypeScript
|
|
|
||
|
|
|
||
|
|
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");
|
||
|
|
|
||
|
|
|
||
|
|
|