Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlie committed Oct 11, 2018
1 parent b0eefb5 commit f909761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/assign-reference.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ describe('assignGlobalConsola', () => {

expect(consola3).not.toBe(consola1)
expect(consola3.symbol).toBe(symbol1)

expect(global.consola).toBe(consola1)
expect(global.consola).not.toBe(consola2)
expect(global.consola).not.toBe(consola3)

expect(global.consola.symbol).toBe(consola1.symbol)
expect(global.consola.symbol).toBe(consola2.symbol)
expect(global.consola.symbol).not.toBe(consola3.symbol)
Expand Down

0 comments on commit f909761

Please sign in to comment.