зеркало из https://github.com/microsoft/dtslint.git
Support $ExpectType with || separating multiple choices
This commit is contained in:
Родитель
4aba6b9bde
Коммит
85c9564f96
|
@ -371,7 +371,7 @@ function getExpectTypeFailures(
|
|||
? checker.typeToString(type, /*enclosingDeclaration*/ undefined, ts.TypeFormatFlags.NoTruncation)
|
||||
: "";
|
||||
|
||||
if (actual !== expected && !matchReadonlyArray(actual, expected)) {
|
||||
if (!expected.split(/\s*\|\|\s*/).some(s => actual === s || matchReadonlyArray(actual, s))) {
|
||||
unmetExpectations.push({ node, expected, actual });
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче