blob: e60f0196a3e12a83d843a686311d59ef92030b29 [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 deprecated for HostType = Application",
body: function () {
assert.throws(
function() {
var arr = ["x", "y"];
var enu = new Enumerator(arr);
}, ReferenceError);
}
},
};
testRunner.runTests(tests);