Skip to content

Commit 74d5d85

Browse files
Merge pull request #2077 from usdoj/uat-9.4.6
Release 9.4.6
2 parents 57fc987 + bd96a9b commit 74d5d85

11 files changed

+3055
-1619
lines changed

.github/workflows/deploy-to-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
GIT_REPO: ${{ secrets.GIT_REPO }}
1111
APP_ENV: development
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ruby/setup-ruby@v1

.github/workflows/deploy-to-production.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
GIT_REPO: ${{ secrets.GIT_REPO }}
1111
APP_ENV: production
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ruby/setup-ruby@v1

.github/workflows/deploy-to-staging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
GIT_REPO: ${{ secrets.GIT_REPO }}
1111
APP_ENV: staging
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ruby/setup-ruby@v1

.github/workflows/deploy-to-uat.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
GIT_REPO: ${{ secrets.GIT_REPO }}
1111
APP_ENV: uat
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ruby/setup-ruby@v1

.github/workflows/pull-request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [pull_request]
33
jobs:
44
# Build for the Acquia Cloud development environment
55
build:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- uses: actions/checkout@v3
99
- uses: ruby/setup-ruby@v1

features/AnnualReport.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Feature: Annual report
4343
And I choose "Requests" from the data type dropdown
4444
And I check the box for the year "2020"
4545
And I hard click on "the View Report button"
46-
And I wait 45 seconds
46+
And I wait 60 seconds
4747
Then I should see "Report Results"
4848
And I should see "Department of Justice"
4949
And I should see "86729"

features/Request.feature

+4-10
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,22 @@ Feature: Request
55
I need to submit FOIA requests
66
So that I can get government information
77

8-
Background:
8+
Scenario: The sections, descriptions, and field labels of the request are visible
99
Given I am on "/request/agency-component/8216158f-8089-431d-b866-dc334e8d4758/"
10-
And I wait 20 seconds
11-
12-
Scenario: The 6 sections of the request are visible
10+
And I wait 30 seconds
1311
Then I should see "Contact information"
1412
And I should see "Your request"
1513
And I should see "Additional information"
1614
And I should see "Fees"
1715
And I should see "Request expedited processing"
1816
And I should see "Review and submit"
19-
20-
Scenario: The section descriptions are visible
21-
Then I should see "This information is needed so the agency knows"
17+
And I should see "This information is needed so the agency knows"
2218
And I should see "The description of the records you are requesting"
2319
And I should see "If you are submitting a request for records"
2420
And I should see "Most FOIA requests do not involve any fees"
2521
And I should see "Agencies generally process requests on a first-in"
2622
And I should see "Please review the information you entered above"
27-
28-
Scenario: The field labels are visible
29-
Then I should see "First name"
23+
And I should see "First name"
3024
And I should see "Last name"
3125
And I should see "Your organization"
3226
And I should see "Email address"

features/Wizard.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Feature: wizard
5151
Then I enter "John Lewis Voting Rights Act" into the wizard query box
5252
Then the "the wizard primary button" element should exist
5353
And I hard click on "the wizard primary button"
54-
And I wait 5 seconds
54+
And I wait 10 seconds
5555
Then I should see "Okay, you’re looking for:"
5656
And I should see "John Lewis Voting Rights Act"
5757
And I should see "We found the following public information:"

features/support/mink.js

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ const driver = new mink.Mink({
77
width: 1366,
88
height: 768,
99
},
10+
puppeteer: {
11+
args: ['--no-sandbox', '--disable-setuid-sandbox'],
12+
headless: true,
13+
devtools: false,
14+
},
1015
selectors: {
1116
'homepage search button': '.usa-search-submit-text',
1217
'the homepage search box': '#search-field-big',

0 commit comments

Comments
 (0)