9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import * as assert from "jsr:@std/assert";
|
|
import Deep from "./proxy.js";
|
|
|
|
Deno.test("proxy", ()=>{
|
|
|
|
const d1 = Deep({name:"seth", age:41, tags:[]}, "p1");
|
|
const dig = d1.name.other;
|
|
const dig2 = dig.so.deep;
|
|
}); |