import {J} from "../../utils"; import {AppMaster,AppMasterConfig,masterConfig} from "../../../src"; export const amVarsInitTests = () => J.desc("AM Vars Init",() => { let m:AppMaster,c:AppMasterConfig,vars:AppMaster["vars"]; it("init",async () => { c = masterConfig("APPMASTER"); m = new AppMaster({vars:c.vars}); J.is(m); J.true(m.vars); vars = m.vars;}); it("has vars",async () => { J.is(vars); //console.log({vars}); }); });