You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.equal(actual.length,expected.length,`[${kind}] Actual array's length does not match expected length. Expected files: ${JSON.stringify(expected)}, actual files: ${JSON.stringify(actual)}`);
23
-
24
-
for(leti=0;i<expected.length;i++){
25
-
constactualReference=actual[i];
26
-
constexpectedReference=expected[i];
27
-
assert.equal(actualReference.fileName,expectedReference.fileName,`[${kind}] actual file path does not match expected. Expected: "${expectedReference.fileName}". Actual: "${actualReference.fileName}".`);
28
-
assert.equal(actualReference.pos,expectedReference.pos,`[${kind}] actual file start position does not match expected. Expected: "${expectedReference.pos}". Actual: "${actualReference.pos}".`);
29
-
assert.equal(actualReference.end,expectedReference.end,`[${kind}] actual file end pos does not match expected. Expected: "${expectedReference.end}". Actual: "${actualReference.end}".`);
0 commit comments