16 lines
562 B
TypeScript
16 lines
562 B
TypeScript
/// <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.addItem({key1:"Peter"},"docit");
|
|
smartenv.printEnv();
|
|
beautylog.log(smartenv.obs.getItem("docit").key1);
|
|
beautylog.log(smartenv.obs.getItem("docit").key1);
|
|
|
|
var key2 = "hello";
|
|
smartenv.obs.getItem("docit").key2 = key2;
|
|
beautylog.log(smartenv.obs.getItem("docit").key2);
|
|
|
|
beautylog.success("Success!"); |