Skip to content

Commit

Permalink
tests: fixing failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserf committed May 10, 2020
1 parent b0b24df commit 40e4f0b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,9 @@ workflows:
master:
jobs:
- build-linux
- build-windows
- build-macos
- build-windows:
requires:
- build-linux
- build-macos:
requires:
- build-linux
6 changes: 4 additions & 2 deletions src/handlers/record/record-handler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ describe('record handler handles messages', () => {
name: ExistingVersion.name,
version: ExistingVersion.version,
parsedData: M.recordData,
isWriteAck: false
isWriteAck: false,
correlationId: undefined
})

recordHandler.handle(client.socketWrapper, ExistingVersion)
Expand Down Expand Up @@ -339,7 +340,8 @@ describe('record handler handles messages', () => {
version: M.recordVersion,
parsedData: M.recordData,
name: M.recordUpdate.name,
isWriteAck: false
isWriteAck: false,
correlationId: undefined
})

recordHandler.handle(client.socketWrapper, M.recordUpdate)
Expand Down

0 comments on commit 40e4f0b

Please sign in to comment.