debug: introduce intregration tests

This commit is contained in:
isidor
2020-02-04 15:43:23 +01:00
parent 8066726b27
commit 3900de53e0
3 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
let y = 0;
for (let i = 0; i < 100; i++) {
console.log(y);
y = y + i;
}