Skip to content

Commit

Permalink
Remove random consolelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bkiac committed Nov 15, 2023
1 parent c575e82 commit 704ecd7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/result/result.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,6 @@ describe.concurrent("expect", () => {
const error = new Error("Original error")
const result = Err(error)
const panicMsg = "Panic message"
try {
Err(testErr).expect("hello")
} catch (err) {
console.log(err)
}
expect(() => result.expect(panicMsg)).toThrow(Panic)
expect(() => result.expect(panicMsg)).toThrow(panicMsg)
})
Expand Down

0 comments on commit 704ecd7

Please sign in to comment.