smartenv/ts/test.ts

16 lines
542 B
TypeScript
Raw Normal View History

2015-11-26 05:31:31 +00:00
/// <reference path="typings/tsd.d.ts" />
var smartenv = require("./index.js");
var beautylog = require("beautylog")("os");
beautylog.info("Now testing the smartenv module");
smartenv.printEnv();
2015-11-26 05:51:13 +00:00
beautylog.info("Now testing the smartenv module");
2015-12-06 20:49:57 +00:00
smartenv.obs.add("docit",{key1:"Peter"});
smartenv.printEnv();
beautylog.log(smartenv.obs.get("docit").key1);
beautylog.log(smartenv.obs.get("docit").key1);
var key2 = "hello";
smartenv.obs.get("docit").key2 = key2;
beautylog.log(smartenv.obs.get("docit").key2);
2015-11-26 05:31:31 +00:00
beautylog.success("Success!");