10 lines
221 B
TypeScript
10 lines
221 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;
|
|
//const dig2 = dig.so.deep;
|
|
|
|
}); |