UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Verified Commit 4a27c07a authored by Micah Nagel's avatar Micah Nagel
Browse files

test

parent 8314adfe
No related branches found
No related tags found
1 merge request!78Update BB Base to 2.0.0
Pipeline #861715 passed
......@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Updated
- Updated bb base image to 2.0.0
- Updated gluon to 0.2.10
- Removed websecurity disable from cypress
## [18.1.1-bb.5] - 2022-06-27
### Updated
......
......@@ -9,17 +9,14 @@ function userID_Generate() {
}
describe('Keycloak Healthcheck', function () {
it('Check if Keycloak admin console is accessible', function() {
Cypress.config('chromeWebSecurity',false);
cy.visit(Cypress.env('url') + '/auth/admin')
cy.get('div[id="kc-header-wrapper"]').should('be.visible')
})
it('Check if Keycloak registration page loads', function() {
Cypress.config('chromeWebSecurity',false);
cy.visit(Cypress.env('url') + '/register')
cy.title().should('include', 'Log in to DoD Platform One')
})
it('Check Keycloak unauthenticated user get login page', function() {
Cypress.config('chromeWebSecurity',false);
cy.visit(Cypress.env('url'))
cy.get('input[id="username"]').should('be.visible')
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment