| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // 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('../../test/TTBasic/loadTarget.js');
- var msgFunction = foo('World');
- var msg0 = msgFunction();
- WScript.SetTimeout(testFunction, 50);
- /////////////////
- function testFunction()
- {
- telemetryLog(`msg0: ${msg0}`, true); //Hello World #0
-
- telemetryLog(`msgFunction() -- 1: ${msgFunction()}`, true); //Hello World #1
- telemetryLog(`msgFunction() -- 2: ${msgFunction()}`, true); //Hello World #2
- emitTTDLog(ttdLogURI);
- }
|