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:
Jarek Radosz 2021-02-08 18:41:32 +01:00 committed by GitHub
parent 8a001c2fe3
commit 3e1a293554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(