Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
6b96686c
Commit
6b96686c
authored
Nov 17, 2015
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2616846
by alexpott: PHPUnit is broken again from the command line
parent
4f9265c8
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
+34
-14
34 additions, 14 deletions
...ts/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
with
34 additions
and
14 deletions
core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
+
34
−
14
View file @
6b96686c
...
...
@@ -10,20 +10,6 @@
use
Drupal\Core\Asset\LibraryDiscoveryParser
;
use
Drupal\Tests\UnitTestCase
;
if
(
!
defined
(
'CSS_AGGREGATE_DEFAULT'
))
{
define
(
'CSS_AGGREGATE_DEFAULT'
,
0
);
define
(
'CSS_AGGREGATE_THEME'
,
100
);
define
(
'CSS_BASE'
,
-
200
);
define
(
'CSS_LAYOUT'
,
-
100
);
define
(
'CSS_COMPONENT'
,
0
);
define
(
'CSS_STATE'
,
100
);
define
(
'CSS_THEME'
,
200
);
define
(
'JS_SETTING'
,
-
200
);
define
(
'JS_LIBRARY'
,
-
100
);
define
(
'JS_DEFAULT'
,
0
);
define
(
'JS_THEME'
,
100
);
}
/**
* @coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryParser
* @group Asset
...
...
@@ -575,3 +561,37 @@ public function setFileValidUri($source, $valid) {
}
}
if
(
!
defined
(
'CSS_AGGREGATE_DEFAULT'
))
{
define
(
'CSS_AGGREGATE_DEFAULT'
,
0
);
}
if
(
!
defined
(
'CSS_AGGREGATE_THEME'
))
{
define
(
'CSS_AGGREGATE_THEME'
,
100
);
}
if
(
!
defined
(
'CSS_BASE'
))
{
define
(
'CSS_BASE'
,
-
200
);
}
if
(
!
defined
(
'CSS_LAYOUT'
))
{
define
(
'CSS_LAYOUT'
,
-
100
);
}
if
(
!
defined
(
'CSS_COMPONENT'
))
{
define
(
'CSS_COMPONENT'
,
0
);
}
if
(
!
defined
(
'CSS_STATE'
))
{
define
(
'CSS_STATE'
,
100
);
}
if
(
!
defined
(
'CSS_THEME'
))
{
define
(
'CSS_THEME'
,
200
);
}
if
(
!
defined
(
'JS_SETTING'
))
{
define
(
'JS_SETTING'
,
-
200
);
}
if
(
!
defined
(
'JS_LIBRARY'
))
{
define
(
'JS_LIBRARY'
,
-
100
);
}
if
(
!
defined
(
'JS_DEFAULT'
))
{
define
(
'JS_DEFAULT'
,
0
);
}
if
(
!
defined
(
'JS_THEME'
))
{
define
(
'JS_THEME'
,
100
);
}
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