Skip to content

Commit

Permalink
Regression: Forgot to rename method on socket API
Browse files Browse the repository at this point in the history
  • Loading branch information
Tencho Tenev committed Jun 16, 2017
1 parent 4ccd19e commit 889efb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/api/checkpoint/index.test.js
Expand Up @@ -9,7 +9,7 @@ const ioMock = {
emit: jest.fn()
}

socket.setUpSocketRoom(ioMock)
socket.register(ioMock)

const app = () => express(routes)

Expand Down
2 changes: 1 addition & 1 deletion src/api/checkpoint/model.test.js
Expand Up @@ -7,7 +7,7 @@ const ioMock = {
emit: jest.fn()
}

socket.setUpSocketRoom(ioMock)
socket.register(ioMock)

let checkpoint

Expand Down
2 changes: 1 addition & 1 deletion src/api/journey/model.test.js
Expand Up @@ -7,7 +7,7 @@ const ioMock = {
emit: jest.fn()
}

socket.setUpSocketRoom(ioMock)
socket.register(ioMock)

let user, journey, checkpoint1, checkpoint2

Expand Down

0 comments on commit 889efb2

Please sign in to comment.