WIP - add extractor, generate snippet_data

This commit is contained in:
Stefan Fejes
2019-08-20 15:52:05 +02:00
parent 88084d3d30
commit cc8f1d8a7a
37396 changed files with 4588842 additions and 133 deletions

27
node_modules/loglevel/test/node-integration.js generated vendored Normal file
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");
});
});