Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove language preference as the pilot app is for English applicants only #29

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions src/main/resources/flows-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ flow:
nextScreens:
- name: timeoutNotice
timeoutNotice:
nextScreens:
- name: languagePreference
languagePreference:
nextScreens:
- name: choosePrograms
choosePrograms:
Expand Down
4 changes: 0 additions & 4 deletions src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ upload-documents.error-heic=We aren't able to upload this type of file. Please t
upload-documents.error-tiff=We aren't able to upload this type of file. Please try another file that ends in one of the following:

demo.banner-text=This site is for example purposes only
language-preferences.button=Translate
language-preferences.english=English
language-preferences.spanish=Espa\u00F1ol
language-preferences.vietnamese=Ti\u1EBFng Vi\u1EC7t

index.title=Maryland Benefits Application
index.header=Welcome to the <em> new </em> Maryland Benefits application experience.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -320,12 +320,6 @@ void completeFlow() {
assertThat(testPage.getTitle()).isEqualTo(message("timeout-notice.title"));
testPage.clickContinue();

// Language preference
assertThat(testPage.getTitle()).isEqualTo(message("language-preference.title"));
testPage.selectFromDropdown("languageRead", "Spanish");
testPage.selectRadio("needInterpreter", "Yes");
testPage.clickContinue();

// Choose programs
assertThat(testPage.getTitle()).isEqualTo(message("choose-programs.title"));

Expand Down
Loading