Skip to content

Commit

Permalink
chore: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb committed Sep 29, 2023
1 parent 121a317 commit 0e8a7ae
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,6 @@ describe(resolveUserArguments, () => {
it('should accept (null, traits) with unknown identity', () => {
user.reset()
const [id, traits, options] = resolver(null, userTraits)
console.log(id, traits, options)
expect(traits).toEqual(userTraits)
expect(options).toEqual({})
expect(id).toEqual(null)
Expand All @@ -451,7 +450,6 @@ describe(resolveUserArguments, () => {
user.reset()
user.identify('something')
const [id, traits, options] = resolver(null, userTraits)
console.log(id, traits, options)
expect(traits).toEqual(userTraits)
expect(options).toEqual({})
expect(id).toEqual('something')
Expand Down

0 comments on commit 0e8a7ae

Please sign in to comment.