2
0

longrunning.js 534 B

12345678910111213
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var seconds = 0;
  6. function finish() {
  7. print('pass');
  8. if (++seconds < 65) {
  9. WScript.SetTimeout(finish, 1000);
  10. }
  11. }
  12. WScript.SetTimeout(finish, 1000);