Skip to content

Commit

Permalink
fix test naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Skinner committed Mar 8, 2023
1 parent 77a905b commit 9c3231c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/node/test/notifier.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('node notifier', () => {
})
})

describe('addMetaData()', () => {
describe('addMetadata()', () => {
it('adds metadata to the client', () => {
Bugsnag.start('abcd12abcd12abcd12abcd12abcd12abcd')
Bugsnag.addMetadata('test', { meta: 'data' })
Expand All @@ -47,7 +47,7 @@ describe('node notifier', () => {
})
})

describe('getMetaData()', () => {
describe('getMetadata()', () => {
it('retrieves metadata previously set on the client', () => {
Bugsnag.start('abcd12abcd12abcd12abcd12abcd12abcd')
Bugsnag.addMetadata('test', { meta: 'data' })
Expand Down Expand Up @@ -77,7 +77,7 @@ describe('node notifier', () => {
})
})

describe('clearMetaData()', () => {
describe('clearMetadata()', () => {
it('clears metadata previously set on the client', () => {
Bugsnag.start('abcd12abcd12abcd12abcd12abcd12abcd')
Bugsnag.addMetadata('test', { meta: 'data' })
Expand Down

0 comments on commit 9c3231c

Please sign in to comment.