mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:24:05 -06:00
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
Block a user