| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- //
- //In theory this test could be race-y -- in which case suppress the console printing but in general ch should be well behaved
- //
- telemetryLog("Start Global Code", true);
- function foo1()
- {
- telemetryLog("Start Foo1", true);
-
- WScript.Echo("Hello World - CallBack 1");
-
- telemetryLog("End Foo1", true);
- }
- function foo2()
- {
- telemetryLog("Start Foo2", true);
-
- WScript.Echo("Hello World - CallBack 2");
-
- telemetryLog("End Foo2", true);
- }
- function foo3()
- {
- telemetryLog("Start Foo3", true);
-
- WScript.Echo("Hello World - CallBack 3");
-
- telemetryLog("End Foo3", true);
- }
- WScript.SetTimeout(foo1, 200);
- WScript.SetTimeout(foo2, 400);
- WScript.SetTimeout(foo3, 600);
- WScript.Echo("Hello World - Global");
- telemetryLog("End Global Code", true);
|