Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automated_testing_kit
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
automated_testing_kit
Merge requests
!10
86b2c5k4p:Handle tests we are not implementing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
86b2c5k4p:Handle tests we are not implementing
1.3.x
into
1.0.x
Overview
0
Commits
8
Pipelines
0
Changes
19
Closed
Miguel Pelayo
requested to merge
1.3.x
into
1.0.x
7 months ago
Overview
0
Commits
8
Pipelines
0
Changes
19
Expand
In the filesystem (/tests), delete them entirely.
modify TC to run succesfully
0
0
Merge request reports
Compare
1.0.x
1.0.x (base)
and
latest version
latest version
cb7be7dc
8 commits,
7 months ago
19 files
+
504
−
441
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
cypress/e2e/atk_contact_us/atk_contact_us.cy.js
+
3
−
3
Options
@@ -35,9 +35,9 @@ describe('Contact Us tests.', () => {
cy
.
log
(
'
**Fill out contact form.**
'
);
cy
.
visit
(
atkConfig
.
contactUsUrl
).
then
(()
=>
{
cy
.
get
(
'
#edit-name
'
).
type
(
userEtherealAccount
.
userName
);
cy
.
get
(
'
#edit-
e
mail
'
).
type
(
userEtherealAccount
.
userEmail
);
cy
.
get
(
'
#edit-subject
'
).
type
(
subjectLine
);
cy
.
get
(
'
#edit-message
'
).
type
(
testId
);
cy
.
get
(
'
#edit-mail
'
).
type
(
userEtherealAccount
.
userEmail
);
cy
.
get
(
'
#edit-subject
-0-value
'
).
type
(
subjectLine
);
cy
.
get
(
'
#edit-message
-0-value
'
).
type
(
testId
);
cy
.
contains
(
'
Send message
'
).
click
();
});
Loading