mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
const { test } = require("tap");
|
|
|
|
test("Accessing things setup in configure before configure is called", batch => {
|
|
batch.test("should work", t => {
|
|
const log4js = require("../../lib/log4js");
|
|
t.ok(log4js.levels);
|
|
t.ok(log4js.connectLogger);
|
|
t.end();
|
|
});
|
|
|
|
batch.end();
|
|
});
|