Don't merge test options. (#6157)
* Don't merge test options. Particularly, I don't want `lodash/merge` to merge my specific plugins with the general test plugins. It led to odd behavior where I could enable a loose transform in my specific test, just to have it overridden by the test fixture's general options. * Need options
This commit is contained in:
committed by
Henry Zhu
parent
40805894c5
commit
3e487f89ab
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "missing super() call in constructor"
|
||||
"throws": "missing super() call in constructor",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "super() is only allowed in a derived constructor"
|
||||
"throws": "super() is only allowed in a derived constructor",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "'super.*' is not allowed before super()"
|
||||
"throws": "'super.*' is not allowed before super()",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "'super.*' is not allowed before super()"
|
||||
"throws": "'super.*' is not allowed before super()",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "'super.*' is not allowed before super()"
|
||||
"throws": "'super.*' is not allowed before super()",
|
||||
"plugins": ["external-helpers", "transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"plugins": ["external-helpers", "transform-es2015-classes", "transform-es2015-block-scoping"]
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "'this' is not allowed before super()"
|
||||
"throws": "'this' is not allowed before super()",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"throws": "'this' is not allowed before super()"
|
||||
"throws": "'this' is not allowed before super()",
|
||||
"plugins": ["transform-es2015-classes"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user