-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'test' into fix-emailFieldValidation
- Loading branch information
Showing
55 changed files
with
4,147 additions
and
922 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Note: most values are defaults but still defined here in case the defaults do change | ||
NODE_ENV=development | ||
MAINTENANCE_MODE=false | ||
|
||
HTTP_PORT=8080 | ||
HTTPS_PORT=8080 | ||
|
||
TLS_KEY='' | ||
TLS_CERT='' | ||
|
||
API_HOST='http://localhost:8081' | ||
API_PATH_PREFIX='' | ||
API_KEY='' | ||
ALLOW_SELF_SIGNED=false | ||
|
||
DISABLE_TURNSTILE=true | ||
SITE_KEY='' | ||
|
||
HELMET_CONFIG='{}' | ||
|
||
NOTIFICATION_BANNER='{"text":{"fi":"Test (fin)", "sv":"Test (swe)", "en":"Test (eng)"},"title":{"fi":"Test title (fin)", "sv":"Test title (swe)", "en":"Test title (eng)"},"type":"info"}' | ||
# Note: these do not work really but are defined so that the href attribute of the link can be tested | ||
CONTACT_INFORMATION_CHANGE_URL='{"fi": "http://localhost:8080/contact-information-change-fin", "sv": "http://localhost:8080/contact-information-change-swe", "en": "http://localhost:8080/contact-information-change-eng"}' | ||
CUSTOMER_SERVICE_CONTACT='{"phone": "123456", "email": "[email protected]"}' | ||
|
||
PROXY_CUSTOM_HEADER='x-foobar' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,3 +135,8 @@ dist | |
|
||
# Dev | ||
dev-certs | ||
|
||
# cypress | ||
/cypress/screenshots | ||
/cypress/videos | ||
/cypress/downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* eslint-disable no-unused-vars */ | ||
const {defineConfig} = require('cypress'); | ||
|
||
module.exports = defineConfig({ | ||
e2e: { | ||
// API request responses are mocked so running over HTTP for e2e test use case is ok | ||
baseUrl: 'http://localhost:8080', | ||
testIsolation: true | ||
} | ||
}); |
Oops, something went wrong.