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
[TestMethod]
public void LoadScript()
{
const int MinSize = 35;
Init();
var text = _asyncronousEngine.LoadScript("storage.sync.js");
Assert.IsTrue(text.Length >= MinSize);
var s = new StringBuilder();
_asyncronousEngine.LoadScript("storage.sync.js", s);
Assert.IsTrue(s.ToString().Length >= MinSize);
}
The text was updated successfully, but these errors were encountered:
Changed Length compere to >= instead of >
The text was updated successfully, but these errors were encountered: