From a6bf9b6329926d5db623be9cdfe68fba60de0828 Mon Sep 17 00:00:00 2001 From: Veronica Mukuhi Muthee Date: Thu, 5 Sep 2024 23:32:27 +0300 Subject: [PATCH] (test) Update vitals & biometrics e2e test (#1997) --- e2e/specs/vitals.spec.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/e2e/specs/vitals.spec.ts b/e2e/specs/vitals.spec.ts index 4ede199241..d67f633332 100644 --- a/e2e/specs/vitals.spec.ts +++ b/e2e/specs/vitals.spec.ts @@ -41,19 +41,15 @@ test('Record vital signs', async ({ page }) => { await vitalsPage.page.getByRole('spinbutton', { name: /diastolic/i }).fill('100'); }); - await test.step('And I fill `37` as the pulse', async () => { + await test.step('And I fill `65` as the pulse', async () => { await vitalsPage.page.getByRole('spinbutton', { name: /pulse/i }).fill('65'); }); - await test.step('And I fill `37` as the respiration rate', async () => { + await test.step('And I fill `16` as the respiration rate', async () => { await vitalsPage.page.getByRole('spinbutton', { name: /respiration rate/i }).fill('16'); }); - await test.step('And I fill `37` as the oxygen saturation', async () => { - await vitalsPage.page.getByRole('spinbutton', { name: /oxygen saturation/i }).fill('98'); - }); - - await test.step('And I add `37` as the oxygen saturation', async () => { + await test.step('And I fill `98` as the oxygen saturation', async () => { await vitalsPage.page.getByRole('spinbutton', { name: /oxygen saturation/i }).fill('98'); });