node-bunyan-lite/test/ctor.test.js

17 lines
304 B
JavaScript
Raw Normal View History

2012-02-08 18:05:56 +00:00
/*
* Copyright (c) 2012, Trent Mick. All rights reserved.
*
* Test type checking on creation of the Logger.
*/
var test = require('tap').test;
var Logger = require('../lib/bunyan');
test("douglas adams", function(t) {
t.ok(42, "the answer to life the universe and everything");
t.end();
});