blob: 7501a98ada8feaa90558f2280429268c5ac6f7c8 [file]
//-------------------------------------------------------------------------------------------------------
// 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);