We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb88d5 commit ca0ae2aCopy full SHA for ca0ae2a
1 file changed
test/lambdaLog.js
@@ -49,6 +49,11 @@ describe('LambdaLog', function() {
49
assert(Array.isArray(log._levels));
50
assert(log._levels.length === 4);
51
});
52
+
53
+ it('should include custom log levels', () => {
54
+ let log = new LambdaLog({}, { test: 'log' });
55
+ assert(log._logLevels.test === 'log');
56
+ });
57
58
59
describe ('Custom', () => {
0 commit comments