Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
403
Merge Requests
63
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
fcb78503
Commit
fcb78503
authored
16 minutes ago
by
Ben Hayward
Browse files
Options
Download
Minor fixes
parent
ebdd701c
fix/cypress-ssr-2539
1 merge request
!765
Fixed broken E2E tests. #2539
Pipeline
#116638398
running with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
cypress/integration/comments/comment-threads.spec.js
View file @
fcb78503
...
...
@@ -6,7 +6,7 @@ import generateRandomId from '../../support/utilities';
* @modify date 2019-08-09 14:42:51
* @desc Spec tests for comment threads.
*/
context
.
only
(
'
Comment Threads
'
,
()
=>
{
context
(
'
Comment Threads
'
,
()
=>
{
const
testUsername
=
generateRandomId
();
const
testPassword
=
generateRandomId
()
+
'
rR.7
'
;
...
...
@@ -187,7 +187,7 @@ context.only('Comment Threads', () => {
// get share link
cy
.
get
(
postMenu
).
click
();
cy
.
contains
(
'
Share
'
).
click
();
cy
.
get
(
"
.minds-dropdown-menu
"
).
contains
(
'
Share
'
).
click
();
// store share link
cy
.
get
(
'
.m-share__copyableLinkText
'
)
...
...
This diff is collapsed.
cypress/integration/login.spec.js
View file @
fcb78503
...
...
@@ -2,6 +2,8 @@ context('Login', () => {
beforeEach
(()
=>
{
cy
.
clearCookies
();
cy
.
visit
(
'
/
'
)
.
location
(
'
pathname
'
)
.
should
(
'
eq
'
,
`/`
);
})
it
(
'
should login
'
,
()
=>
{
...
...
This diff is collapsed.
Please
register
or
sign in
to comment