Skip to content

Commit

Permalink
Merge branch 'B-21115' into INT-B-21115
Browse files Browse the repository at this point in the history
  • Loading branch information
loganwc committed Oct 2, 2024
2 parents 71165ad + 2b5bec8 commit 466fb79
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
10 changes: 0 additions & 10 deletions playwright/tests/my/mymove/onboarding.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ test.describe('Onboarding', () => {
// Input validation code
await customerPage.submitParameterValue();

// CONUS/OCONUS section
await customerPage.waitForPage.onboardingConus();
await page.getByText('Starts and ends in the continental US').click();
await customerPage.navigateForward();

// Branch/DOD ID section
await customerPage.waitForPage.onboardingDodId();
await page.getByRole('combobox', { name: 'Branch of service' }).selectOption({ label: 'Space Force' });
Expand Down Expand Up @@ -79,11 +74,6 @@ test.describe('(MultiMove) Onboarding', () => {
await customerPage.submitParameterValue();
}

// CONUS/OCONUS section
await customerPage.waitForPage.onboardingConus();
await page.getByText('Starts and ends in the continental US').click();
await customerPage.navigateForward();

// Branch/DOD ID/Rank section
await customerPage.waitForPage.onboardingDodId();
await page.getByRole('combobox', { name: 'Branch of service' }).selectOption({ label: 'Space Force' });
Expand Down
11 changes: 0 additions & 11 deletions src/components/Customer/DodInfoForm/DodInfoForm.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,6 @@ describe('DodInfoForm component', () => {
});
});

it('implements the onBack handler when the Back button is clicked', async () => {
const { getByRole } = render(<DodInfoForm {...testProps} />);
const backBtn = getByRole('button', { name: 'Back' });

await userEvent.click(backBtn);

await waitFor(() => {
expect(testProps.onBack).toHaveBeenCalled();
});
});

describe('Coast Guard Customers', () => {
it('shows an error message if EMPLID not present ', async () => {
const { getByRole, getAllByTestId, getByLabelText } = render(<DodInfoForm {...coastGuardTestProps} />);
Expand Down

0 comments on commit 466fb79

Please sign in to comment.