Skip to content

Commit

Permalink
Merge branch 'main' into map/radius-234
Browse files Browse the repository at this point in the history
  • Loading branch information
popkinj authored Jan 28, 2025
2 parents 1339481 + 904c309 commit 61659f6
Show file tree
Hide file tree
Showing 24 changed files with 3,480 additions and 13,146 deletions.
2 changes: 1 addition & 1 deletion frontend/e2e/pages/auth.list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const authorization_list_page = async (page: Page) => {
await expect(page.getByLabel('Notification')).toBeVisible()
await page.getByLabel('Notification').check()
await expect(page.getByLabel('Compost Production Facility')).toBeVisible()
await expect(page.getByLabel('Land Application Biosolids')).toBeVisible()
await expect(page.getByLabel('Land Application')).toBeVisible()
await expect(
page.getByRole('button', { name: 'Reset Filters' }),
).toBeVisible()
Expand Down
6 changes: 3 additions & 3 deletions frontend/e2e/pages/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const map_page = async (page: Page) => {
page.getByRole('button', { name: 'Radius Search' }),
).toBeVisible()

const searchBy = page.getByText('Search By:')
const searchBy = page.getByText('Status')
await expect(searchBy).toBeVisible()
await searchBy.click()

Expand All @@ -37,7 +37,7 @@ export const map_page = async (page: Page) => {

await expect(page.getByLabel('Inactive')).toBeHidden()

const filterBy = page.getByText('Filter by Facility Type')
const filterBy = page.getByText('Filter')
await expect(filterBy).toBeVisible()
await filterBy.click()

Expand All @@ -48,7 +48,7 @@ export const map_page = async (page: Page) => {
page.getByRole('checkbox', { name: 'Compost Production Facility' }),
).toBeVisible()
await expect(
page.getByRole('checkbox', { name: 'Land Application Biosolids' }),
page.getByRole('checkbox', { name: 'Land Application' }),
).toBeVisible()
await expect(page.getByRole('checkbox', { name: 'Permit' })).toBeVisible()
await expect(page.getByRole('checkbox', { name: 'Approval' })).toBeVisible()
Expand Down
Loading

0 comments on commit 61659f6

Please sign in to comment.