-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cypress test. Check email confirmation page.
- Loading branch information
1 parent
a9ce458
commit 05b925a
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
tests/cypress/integration/actions_users/case_106_email_confirmation_page.js
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,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'); | ||
}); | ||
}); | ||
}); |