-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathreplace-xsite.js
28 lines (24 loc) · 1.12 KB
/
replace-xsite.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//-------------------------------------------------------------------------------------------------------
// 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");
var tests = [
{
name: "String.Replace ( Pattern as String , ReplaceFunction )",
body: function () {
assert.doesNotThrow(function() {
var str = "AAoooAAooo";
var script = `
function foo(str) {
return {
toString: function () { return str + "ZZ" }
}
}`
var replacer = WScript.LoadScript(script, 'samethread')
var replaced = str.replace("A", replacer.foo);
});
}
}
];
testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });