gale/proxy.test.ts

10 lines
221 B
TypeScript
Raw Normal View History

2025-02-19 17:01:11 -05:00
import * as assert from "jsr:@std/assert";
import Deep from "./proxy.js";
Deno.test("proxy", ()=>{
const d1 = Deep({name:"seth", age:41, tags:[]}, "p1");
2025-02-21 07:55:08 -05:00
const dig = d1.name;
//const dig2 = dig.so.deep;
2025-02-19 17:01:11 -05:00
});