Skip to content

Commit

Permalink
Merge branch 'integrationTesting' into B-21336-int
Browse files Browse the repository at this point in the history
  • Loading branch information
JonSpight authored Jan 3, 2025
2 parents 638a70a + 0fecb61 commit f9470de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1064,5 +1064,6 @@
20241220213134_add_destination_gbloc_db_function.up.sql
20241224172258_add_and_update_po_box_zip.up.sql
20241227153723_remove_empty_string_emplid_values.up.sql
20241227202424_insert_transportation_offices_camp_pendelton.up.sql
20241230190638_remove_AK_zips_from_zip3.up.sql
20241230190647_add_missing_AK_zips_to_zip3_distances.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
--update address for Camp Pendelton transportation office
update addresses set postal_code = '92054', us_post_region_cities_id = 'd0c818dc-1e6c-416a-bfa9-2762efebaed1' where id = 'af2ebb73-54fe-46e0-9525-a4568ceb9e0e';

--fix Camp Pendelton transportation office spelling
update transportation_offices set name = 'PPPO DMO Camp Pendleton' where id = 'f50eb7f5-960a-46e8-aa64-6025b44132ab';

--associate duty location to Camp Pendleton transportation office
update duty_locations set transportation_office_id = 'f50eb7f5-960a-46e8-aa64-6025b44132ab' where id = '6e320acb-47b6-45e0-80f4-9d8dc1e20812';
4 changes: 1 addition & 3 deletions playwright/tests/my/mymove/orders.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,8 @@ test.describe('(MultiMove) Orders', () => {
await expect(page.getByLabel('Current duty location')).toBeEmpty();
await customerPage.selectDutyLocation('Marine Corps AS Yuma, AZ 85369', 'origin_duty_location');

await page.getByRole('combobox', { name: 'Counseling Office' }).selectOption({ label: 'PPPO DMO Camp Pendleton' });
await page.getByRole('combobox', { name: 'Pay grade' }).selectOption({ label: 'E-7' });
await page
.getByRole('combobox', { name: 'Counseling Office' })
.selectOption({ label: 'PPPO DMO Camp Pendleton - USMC' });

await customerPage.navigateForward();
await customerPage.waitForPage.ordersUpload();
Expand Down

0 comments on commit f9470de

Please sign in to comment.