@openmrs/esm-fast-data-entry-app 1.4.2-pre.704 → 1.4.2-pre.707
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__mocks__/react-i18next.js +16 -4
- package/dist/1003.js +1 -1
- package/dist/1003.js.map +1 -1
- package/dist/{1252.js → 2355.js} +1 -1
- package/dist/2355.js.map +1 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-fast-data-entry-app.js +1 -1
- package/dist/openmrs-esm-fast-data-entry-app.js.buildmanifest.json +37 -37
- package/dist/openmrs-esm-fast-data-entry-app.js.map +1 -1
- package/dist/routes.json +1 -1
- package/e2e/core/test.ts +1 -1
- package/e2e/fixtures/api.ts +1 -1
- package/e2e/pages/sample-test.ts +1 -1
- package/e2e/specs/form-workflow.spec.ts +160 -0
- package/package.json +2 -2
- package/src/FormBootstrap.test.tsx +112 -0
- package/src/context/FormWorkflowReducer.test.ts +142 -0
- package/src/context/GroupFormWorkflowReducer.test.ts +302 -0
- package/src/context/GroupFormWorkflowReducer.ts +1 -1
- package/src/declarations.d.ts +0 -1
- package/src/group-form-entry-workflow/GroupSessionWorkspace.test.tsx +190 -0
- package/src/group-form-entry-workflow/SessionMetaWorkspace.test.tsx +94 -0
- package/src/group-form-entry-workflow/group-search-header/GroupSearchHeader.test.tsx +121 -0
- package/src/hooks/useGetPatient.test.tsx +113 -0
- package/tsconfig.json +1 -1
- package/dist/1252.js.map +0 -1
- package/e2e/specs/sample-test.spec.ts +0 -10
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { test, expect } from '@playwright/test';
|
|
2
|
-
import { FastDataEntryPage } from '../pages';
|
|
3
|
-
|
|
4
|
-
// This test is a sample E2E test. You can delete it.
|
|
5
|
-
|
|
6
|
-
test('sample-test', async ({ page }) => {
|
|
7
|
-
const fastDataEntryPage = new FastDataEntryPage(page);
|
|
8
|
-
await fastDataEntryPage.goto();
|
|
9
|
-
await expect(page.getByText('Fast Data Entry')).toBeVisible();
|
|
10
|
-
});
|