The OpenMRS Billing Module is designed to streamline the financial operations within healthcare settings by facilitating the management of patient billing, payments, and service pricing. This module integrates seamlessly with the OpenMRS platform, allowing healthcare providers to generate bills, track payments, and manage various billable services. It is an essential tool for ensuring transparency and accuracy in financial transactions within healthcare facilities, contributing to efficient service delivery.
For more information, please see the OpenMRS Frontend Developer Documentation.
Check out the developer documentation here.
This monorepo uses yarn.
To install the dependencies, run:
yarn
To start a dev server, run:
yarn start
Once the dev server launches, log in and select a location. You will get redirected to the home page. Once there:
- Go to the Implementers tools, under the feature flags, toggle on the Billing Module feature flag to access billing functionalities.
- For more information on how to navigate and use the billing module, please refer to this documentation
To run tests for all packages, run:
yarn turbo run test
To run tests in watch
mode, run:
yarn turbo run test:watch
To run a specific test file, run:
yarn turbo run test -- visit-notes-form
The above command will only run tests in the file or files that match the provided string.
You can also run the matching tests from above in watch mode by running:
yarn turbo run test:watch -- visit-notes-form
To generate a coverage
report, run:
yarn turbo run coverage
By default, turbo
will cache test runs. This means that re-running tests wihout changing any of the related files will return the cached logs from the last run. To bypass the cache, run tests with the force
flag, as follows:
yarn turbo run test --force
To run end-to-end tests, run:
yarn test-e2e
Read the e2e testing guide to learn more about End-to-End tests in this project.
The Playwright version in the Bamboo e2e Dockerfile and the package.json
file must match. If you update the Playwright version in one place, you must update it in the other.
If you notice that your local version of the application is not working or that there's a mismatch between what you see locally versus what's in dev3, you likely have outdated versions of core libraries. To update core libraries, run the following commands:
# Upgrade core libraries
yarn up openmrs@next @openmrs/esm-framework@next
git checkout package.json
yarn
For documentation about our design patterns, please visit our design system documentation website.
Please see the Implementer Documentation for information about configuring modules.
See Creating a Distribution for information about adding microfrontends to a distribution.
For more information on how to get started, please refer to OpenMRS Frontend Developer Documentation.