Cypress test. Check email confirmation page. (#3750)

main
Dmitry Kruchinin 4 years ago committed by GitHub
parent a9ce458311
commit 54ac8c08e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,20 @@
// Copyright (C) 2021 Intel Corporation
//
// SPDX-License-Identifier: MIT
/// <reference types="cypress" />
context('Email confirmation page.', () => {
const caseId = 106;
describe(`Testing "Case ${caseId}."`, () => {
it('Check email confirmation page.', () => {
cy.visit('auth/email-confirmation');
cy.url().should('include', '/auth/email-confirmation');
cy.get('#email-confirmation-page-container').should('exist');
// Automatic return to the login page
cy.url().should('include', '/auth/login');
});
});
});
Loading…
Cancel
Save