Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_base_profile
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_base_profile
Commits
3192c1bf
Commit
3192c1bf
authored
3 years ago
by
l26yan
Committed by
Liam Morland
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4630 Make sure account settings first name and last name field are not displayed
parent
354e8cb8
No related branches found
No related tags found
2 merge requests
!433
ISTWCMS-6296 Create test for all event dates test cases
,
!152
ISTWCMS-4630 Make "Who's online" block available for all roles
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/src/Functional/UwWcmsBasicTest.php
+6
-0
6 additions, 0 deletions
tests/src/Functional/UwWcmsBasicTest.php
with
6 additions
and
0 deletions
tests/src/Functional/UwWcmsBasicTest.php
+
6
−
0
View file @
3192c1bf
...
...
@@ -1892,6 +1892,12 @@ class UwWcmsBasicTest extends BrowserTestBase {
$this
->
drupalGet
(
'admin/people'
);
$this
->
assertSession
()
->
statusCodeEquals
(
200
);
$this
->
assertSession
()
->
pageTextContains
(
$fname
.
' '
.
$lname
);
// field_uw_first_name and field_uw_last_name are not displayed.
$this
->
drupalGet
(
'users/wcmstest'
);
$this
->
assertSession
()
->
pageTextContains
(
$fname
.
' '
.
$lname
);
$this
->
assertSession
()
->
pageTextNotContains
(
'First name'
);
$this
->
assertSession
()
->
pageTextNotContains
(
'Last name'
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment