Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
module_filter
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
module_filter
Merge requests
!52
Resolve
#3455083
"Finish up test"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve
#3455083
"Finish up test"
issue/module_filter-3455083:3455083-finish-up-test
into
5.x
Overview
0
Commits
5
Pipelines
5
Changes
1
Merged
Stephen Mustgrave
requested to merge
issue/module_filter-3455083:3455083-finish-up-test
into
5.x
11 months ago
Overview
0
Commits
5
Pipelines
5
Changes
1
Expand
Closes
#3455083
0
0
Merge request reports
Compare
5.x
version 4
7eb2dc6e
11 months ago
version 3
0630ada8
11 months ago
version 2
27628d3b
11 months ago
version 1
5715d539
11 months ago
5.x (base)
and
latest version
latest version
3671f82e
5 commits,
11 months ago
version 4
7eb2dc6e
4 commits,
11 months ago
version 3
0630ada8
3 commits,
11 months ago
version 2
27628d3b
2 commits,
11 months ago
version 1
5715d539
1 commit,
11 months ago
1 file
+
13
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tests/src/FunctionalJavascript/ModuleFilterJavascriptInstallPageTest.php
+
13
−
1
Options
@@ -23,8 +23,20 @@ class ModuleFilterJavascriptInstallPageTest extends ModuleFilterJavascriptTestBa
$this
->
drupalLogin
(
$this
->
adminUser
);
$this
->
drupalGet
(
'admin/modules'
);
$page
=
$this
->
getSession
()
->
getPage
();
$page
->
clickLink
(
'Testing'
);
// Check that module_filter is under Recently Enabled.
$page
->
clickLink
(
'Recently enabled'
);
$assert
->
pageTextContains
(
'Module Filter'
);
// Install a module from Newly Available tab.
$page
->
clickLink
(
'Newly available'
);
$this
->
submitForm
([
'edit-modules-announcements-feed-enable'
=>
TRUE
],
'Install'
);
// Verify Announcements appears under Recently Enabled.
$page
->
clickLink
(
'Recently enabled'
);
$assert
->
pageTextContains
(
'Announcements'
);
$page
->
clickLink
(
'Testing'
);
// Verify that all the modules used in this test are displayed by default.
$assert
->
pageTextContains
(
'Roses'
);
$assert
->
pageTextContains
(
'Banana'
);
Loading