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
Merge requests
!325
ISTWCMS-5351 Update catalogTest due to update to allowed_format 1.5
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ISTWCMS-5351 Update catalogTest due to update to allowed_format 1.5
feature/ISTWCMS-5351-l26yan-Update-to-allowed_format-1.5
into
3.1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Lily Yan
requested to merge
feature/ISTWCMS-5351-l26yan-Update-to-allowed_format-1.5
into
3.1.x
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
ISTWCMS-5351 Update catalogTest due to update to allowed_format 1.5
0
0
Merge request reports
Compare
3.1.x
3.1.x (base)
and
latest version
latest version
8ca4f4ba
1 commit,
2 years ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tests/src/Functional/UwWcmsBasicTest.php
+
4
−
4
Options
@@ -981,10 +981,10 @@ class UwWcmsBasicTest extends BrowserTestBase {
// Make sure only 'Basic' format is checked.
$this
->
drupalGet
(
'admin/structure/types/manage/uw_ct_catalog_item/fields/node.uw_ct_catalog_item.field_uw_catalog_summary'
);
$this
->
assertSession
()
->
statusCodeEquals
(
200
);
$this
->
assertSession
()
->
checkboxChecked
(
'edit-third-party-settings-allowed-formats-
uw-tf-basic
'
);
$this
->
assertSession
()
->
checkboxNotChecked
(
'edit-third-party-settings-allowed-formats-
uw-tf-standard
'
);
$this
->
assertSession
()
->
checkbox
Not
Checked
(
'edit-third-party-settings-allowed-formats-
uw-tf-full-html
'
);
$this
->
assertSession
()
->
checkboxNotChecked
(
'edit-third-party-settings-allowed-formats-plain-text'
);
$this
->
assertSession
()
->
checkbox
Not
Checked
(
'edit-third-party-settings-allowed-formats-
allowed-formats-uw-tf-standard
'
);
$this
->
assertSession
()
->
checkboxNotChecked
(
'edit-third-party-settings-allowed-formats-
allowed-formats-uw-tf-full-html
'
);
$this
->
assertSession
()
->
checkboxChecked
(
'edit-third-party-settings-allowed-formats-
allowed-formats-uw-tf-basic
'
);
$this
->
assertSession
()
->
checkboxNotChecked
(
'edit-third-party-settings-allowed-formats-
allowed-formats-
plain-text'
);
// Make sure catalog term path pattern.
$this
->
drupalGet
(
'admin/config/search/path/patterns/uw_path_catalogs'
);
Loading