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.isTrue(calledMap.has(name),`${callback} is expected to contain ${name}, actual keys: ${arrayFrom(calledMap.keys())}`);
5329
-
assert.equal(calledMap.get(name).length,called,`${callback} is expected to be called ${called} times with ${name}. Actual entry: ${calledMap.get(name)}`);
assert.isTrue(actual.has(name),`${caption}: expected to contain ${name}, actual keys: ${arrayFrom(actual.keys())}`);
154
+
assert.equal(actual.get(name).length,count,`${caption}: Expected to be have ${count} entries for ${name}. Actual entry: ${JSON.stringify(actual.get(name))}`);
assert.equal(actual.length,expected.length,`${caption}: incorrect actual number of files, expected:\r\n${expected.join("\r\n")}\r\ngot: ${actual.join("\r\n")}`);
0 commit comments