Skip to content

Commit 9d86bfd

Browse files
committed
Remove trace from Bunyan tests because bunyan.trace() doesn't exist
1 parent 3aad001 commit 9d86bfd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/bunyan/src/bunyan.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ async function testLevel(
6565
}
6666

6767
describe("Bunyan tests", () => {
68-
it("should log at the 'trace' level", async done => {
69-
return testLevel("trace", LogLevel.Trace, done);
70-
});
71-
7268
it("should log at the 'debug' level", async done => {
7369
return testLevel("debug", LogLevel.Debug, done);
7470
});
@@ -92,7 +88,6 @@ describe("Bunyan tests", () => {
9288
it("should log using number levels", async done => {
9389
// Fixtures
9490
const levels: LevelTest[] = [
95-
[10, LogLevel.Trace, "trace"],
9691
[20, LogLevel.Debug, "debug"],
9792
[30, LogLevel.Info, "info"],
9893
[40, LogLevel.Warn, "warn"],

0 commit comments

Comments
 (0)