Skip to content

Commit

Permalink
test: update test name (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mato533 authored Nov 1, 2024
1 parent 4f92ac7 commit 5c35e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/checker.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ describe('checkFalsy', () => {
it('ok', () => {
expect(checkFalsy(api, channelMap)).toBeTruthy()
})
it('ng1', () => {
it('undefined - channelMap', () => {
expect(checkFalsy(api, undefined)).toBeFalsy()
})
it('ng2', () => {
it('undefined - ipcBridge', () => {
expect(checkFalsy(undefined, channelMap)).toBeFalsy()
})
})
Expand Down

0 comments on commit 5c35e17

Please sign in to comment.