blob: 215789ad451acc4675d823eef9527eda8585e38a [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js", "self");
var tests = {
test01: {
name: "Check that Enumerator is allowed for HostType = Web View",
body: function () {
var arr = ["x", "y"];
var enu = new Enumerator(arr);
for (enu.moveFirst(); !enu.atEnd(); enu.moveNext()) helpers.writeln(enu.item());
}
},
};
testRunner.runTests(tests);