UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Update BB Base to 2.0.0

Merged Micah Nagel requested to merge bb-base-2 into main
2 files
+ 1
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -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')
})
Loading