DEV: Don't skip tests that run fine in legacy env (#12011)
We didn't run some of the plugin tests since #11899. I'd file that under "whoops".
This commit is contained in:
parent
8a001c2fe3
commit
3e1a293554
|
@ -47,7 +47,7 @@ export default function (name, opts) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (typeof opts.template === "string") {
|
||||
if (typeof opts.template === "string" && !LEGACY_ENV) {
|
||||
let testName = QUnit.config.currentModule.name + " " + name;
|
||||
// eslint-disable-next-line
|
||||
console.warn(
|
||||
|
|
Loading…
Reference in New Issue