tools/test/test.js

16 lines
551 B
JavaScript
Raw Normal View History

2016-03-03 01:22:47 +00:00
/// <reference path="../ts/typings/main.d.ts" />
2016-03-03 01:04:14 +00:00
var npmg = require("../dist/index.js");
var smartenv = require("smartenv");
var environment = smartenv.getEnv();
describe("npmg", function () {
describe(".install()", function () {
it("should install default list globally when parsed 'default' as argument", function () {
if (environment.isC9 || environment.isCI) {
this.timeout(60000);
npmg.install("default");
}
;
});
});
});
2016-03-03 01:07:07 +00:00
//# sourceMappingURL=test.js.map