first commit

This commit is contained in:
DanielRamirezGe
2020-01-14 20:43:08 -06:00
parent 3557894f7f
commit 5eecfbf6cd
26326 changed files with 2434803 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
"use strict";
describe("loglevel included via node", function () {
it("is included successfully", function () {
expect(require('../lib/loglevel')).not.toBeUndefined();
});
it("allows setting the logging level", function () {
var log = require('../lib/loglevel');
log.setLevel(log.levels.TRACE);
log.setLevel(log.levels.DEBUG);
log.setLevel(log.levels.INFO);
log.setLevel(log.levels.WARN);
log.setLevel(log.levels.ERROR);
});
it("successfully logs", function () {
var log = require('../lib/loglevel');
console.info = jasmine.createSpy("info");
log.setLevel(log.levels.INFO);
log.info("test message");
expect(console.info).toHaveBeenCalledWith("test message");
});
});