-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(checkins): fix patient checkin report
This commit updates the patient checkin report to the latest report standard. It adds integration tests for the patient checkin report route. Closes #770.
- Loading branch information
Jonathan Niles
committed
Oct 11, 2016
1 parent
cf3c414
commit cfda425
Showing
4 changed files
with
24 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const RenderingTests = require('../rendering'); | ||
const patientUuid = '274c51ae-efcc-4238-98c6-f402bfb39866'; | ||
const target = `/reports/medical/patients/${patientUuid}/checkins`; | ||
|
||
describe(`(${target}) Patient Checkin Report`, RenderingTests(target)); |