Tweaked gitignore

gitignore removed all composer and npm files, so automated builds would fail
This commit is contained in:
Henry Whitaker
2020-04-12 21:24:03 +01:00
parent 698687f12d
commit ea5808047f
27863 changed files with 3399604 additions and 5 deletions

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");
});
});