feat(ts): initial
This commit is contained in:
19
test/test.ts
Normal file
19
test/test.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { expect, tap } from "tapbundle";
|
||||
import * as smartlog from "../ts/index";
|
||||
|
||||
let defaultLogger: smartlog.Smartlog;
|
||||
|
||||
tap.test("should produce instance of Smartlog", async () => {
|
||||
defaultLogger = smartlog.getDefaultLogger();
|
||||
expect(defaultLogger).to.be.instanceOf(smartlog.Smartlog);
|
||||
});
|
||||
|
||||
tap.test("should enable console logging", async () => {
|
||||
defaultLogger.enableConsole();
|
||||
});
|
||||
|
||||
tap.test("should be able to log things", async () => {
|
||||
defaultLogger.log("silly", "hi");
|
||||
});
|
||||
|
||||
tap.start();
|
Reference in New Issue
Block a user