Skip to content

Commit 245dbab

Browse files
Removed 'debugger' statements from tests.
1 parent ddbc909 commit 245dbab

15 files changed

+3
-15
lines changed

tests/cases/fourslash/commentsMultiModuleMultiFile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
// this line triggers a semantic/syntactic error check, remove line when 788570 is fixed
3030
edit.insert('');
31-
debugger;
3231
goTo.marker('1');
3332
verify.completionListContains("multiM", "namespace multiM", "this is multi declare namespace\nthi is multi namespace 2\nthis is multi namespace 3 comment");
3433

tests/cases/fourslash/completionListWithAmbientDeclaration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
//// declare module 'https' {
88
//// }
99
//// /*2*/
10-
debugger;
1110
goTo.marker("1");
1211
verify.not.completionListContains("http");
1312
goTo.marker("2");

tests/cases/fourslash/definitionNameOnEnumMember.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
////}
88
////var enumMember = e./*1*/thirdMember;
99

10-
debugger;
1110
goTo.marker("1");
1211
verify.verifyDefinitionsName("thirdMember", "e");

tests/cases/fourslash/deleteModifierBeforeVarStatement1.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ goTo.position(0);
3434
// : |--- delete "\n\n///..."
3535
// 1:
3636
// 2:
37-
debugger;
3837
edit.deleteAtCaret(100);
3938

4039

tests/cases/fourslash/formattingSkippedTokens.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
/////*4*/ : T) { }
99
////}
1010
/////*5*/var x =
11-
debugger;
1211
format.document();
1312
goTo.marker('1');
1413
verify.currentLineContentIs('foo(): Bar { }');

tests/cases/fourslash/getEmitOutputWithDeclarationFile3.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@
1818

1919
// @Filename: inputFile5.js
2020
//// var x2 = 1000;
21-
debugger;
2221
verify.baselineGetEmitOutput();

tests/cases/fourslash/getEmitOutputWithSemanticErrorsForMultipleFiles.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@
1212
// @Filename: inputFile2.ts
1313
//// // File not emitted, and contains semantic errors
1414
//// var semanticError: boolean = "string";
15-
debugger;
1615
verify.baselineGetEmitOutput();

tests/cases/fourslash/getOccurrencesTryCatchFinally.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
////[|fina/*3*/lly|] {
1717
////}
1818

19-
debugger;
2019
for (var i = 1; i <= test.markers().length; i++) {
2120
goTo.marker("" + i);
2221
verify.occurrencesAtPositionCount(3);

tests/cases/fourslash/navigateItemsLet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
////function foo() {
55
//// {| "itemName": "d", "kind": "let", "parentName": "foo" |}let d = 10;
66
////}
7-
debugger;
7+
88
test.markers().forEach(marker => {
99
verify.navigationItemsListContains(
1010
marker.data.itemName,

tests/cases/fourslash/navigationItemsExactMatch2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
////function distance2(distanceParam1): void {
1818
//// var distanceLocal1;
1919
////}
20-
debugger;
20+
2121
goTo.marker("file1");
2222
verify.navigationItemsListCount(2, "point", "exact");
2323
verify.navigationItemsListCount(5, "distance", "prefix");

0 commit comments

Comments
 (0)