smartenv/test.js
2015-12-06 21:49:57 +01:00

15 lines
545 B
JavaScript

/// <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();
beautylog.info("Now testing the smartenv module");
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);
beautylog.success("Success!");