Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal_cms
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
drupal_cms
Merge requests
!305
Issue
#3493442
: Enable Klaro providers for video when needed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3493442
: Enable Klaro providers for video when needed
issue/drupal_cms-3493442:3493442-enable-klaro-apps-eca
into
1.x
Overview
17
Commits
12
Pipelines
21
Changes
14
Merged
Jürgen Haas
requested to merge
issue/drupal_cms-3493442:3493442-enable-klaro-apps-eca
into
1.x
4 months ago
Overview
16
Commits
12
Pipelines
21
Changes
14
Expand
Closes
#3493442
0
0
Merge request reports
Compare
1.x
version 12
bb98142a
3 months ago
version 11
8af3841f
3 months ago
version 10
ad109833
3 months ago
version 9
4bba1c61
3 months ago
version 8
5c8ee711
3 months ago
version 7
f60d80a4
4 months ago
version 6
c5ad333b
4 months ago
version 5
38444485
4 months ago
version 4
7342e600
4 months ago
version 3
e88cb3fd
4 months ago
version 2
140fea18
4 months ago
version 1
9091f70c
4 months ago
1.x (base)
and
latest version
latest version
bb98142a
12 commits,
3 months ago
version 12
bb98142a
12 commits,
3 months ago
version 11
8af3841f
13 commits,
3 months ago
version 10
ad109833
12 commits,
3 months ago
version 9
4bba1c61
11 commits,
3 months ago
version 8
5c8ee711
10 commits,
3 months ago
version 7
f60d80a4
8 commits,
4 months ago
version 6
c5ad333b
7 commits,
4 months ago
version 5
38444485
6 commits,
4 months ago
version 4
7342e600
5 commits,
4 months ago
version 3
e88cb3fd
3 commits,
4 months ago
version 2
140fea18
2 commits,
4 months ago
version 1
9091f70c
1 commit,
4 months ago
14 files
+
1142
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
recipes/drupal_cms_analytics/tests/src/Functional/ComponentValidationTest.php
+
8
−
0
Options
@@ -38,6 +38,14 @@ class ComponentValidationTest extends BrowserTestBase {
'--input=drupal_cms_analytics.property_id=nonsense'
,
];
$this
->
assertStringContainsString
(
'This value is not valid.'
,
$this
->
applyRecipe
(
$dir
,
1
,
$options
)
->
getErrorOutput
());
// The privacy links should be visible to anonymous users in the footer.
$this
->
drupalPlaceBlock
(
'system_menu_block:footer'
,
[
'label'
=>
'Footer'
]);
$this
->
drupalGet
(
'<front>'
);
$footer_menu
=
$this
->
assertSession
()
->
elementExists
(
'css'
,
'nav > h2:contains("Footer") + ul'
);
// The privacy setting should be visible to anonymous users in the footer.
$this
->
assertTrue
(
$footer_menu
->
hasLink
(
'My privacy settings'
));
}
}
Loading