Skip to content

Commit b4a2168

Browse files
Remove calls to "debugger;" in our fourslash tests.
1 parent fbfb94f commit b4a2168

10 files changed

+3
-12
lines changed

tests/cases/fourslash/autoFormattingOnPasting.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
////module TestModule {
44
/////**/
55
////}
6-
debugger;
76
goTo.marker("");
87
edit.paste(" class TestClass{\r\n\
98
private foo;\r\n\

tests/cases/fourslash/commentsFunction.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ verify.quickInfoIs('(local var) localVar: string', '');
126126
goTo.marker('30');
127127
verify.quickInfoIs('(parameter) b: string', '');
128128
goTo.marker('31');
129-
debugger;
130129
verify.quickInfoIs('(local var) lambdaVar: (b: string) => string', '');
131130
goTo.marker('32');
132131
verify.quickInfoIs('(parameter) a: number', '');

tests/cases/fourslash/findAllRefsWithShorthandPropertyAssignment2.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
//// M.y./*4*/dx;
1111

1212
goTo.marker('1');
13-
debugger;
1413
verify.referencesCountIs(1);
1514

1615
goTo.marker('2');
@@ -20,4 +19,4 @@ goTo.marker('3');
2019
verify.referencesCountIs(3);
2120

2221
goTo.marker('4');
23-
verify.referencesCountIs(2);
22+
verify.referencesCountIs(2);

tests/cases/fourslash/forceIndentAfterNewLineInsert.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
////{ function h() {
77
////return 0;
88
////}}
9-
debugger;
109
format.document();
1110
verify.currentFileContentIs(
1211
"function f()\n" +
@@ -17,4 +16,3 @@ verify.currentFileContentIs(
1716
" }\n" +
1817
"}"
1918
);
20-

tests/cases/fourslash/getEmitOutputWithDeclarationFile.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@
1414
//// y : number;
1515
//// }
1616

17-
debugger;
1817
verify.baselineGetEmitOutput();

tests/cases/fourslash/getEmitOutputWithDeclarationFile2.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@
1414
// @emitThisFile: true
1515
//// var x:string = "hello";
1616

17-
debugger;
1817
verify.baselineGetEmitOutput();

tests/cases/fourslash/getEmitOutputWithDeclarationFile3.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
// @Filename: inputFile5.js
2020
//// var x2 = 1000;
2121

22-
debugger;
2322
verify.baselineGetEmitOutput();

tests/cases/fourslash/localFunction.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
goTo.marker("1");
1313
verify.quickInfoIs('(function) foo(): void');
1414
goTo.marker("2");
15-
debugger;
1615
verify.quickInfoIs('(local function) bar2(): void');
1716
goTo.marker("3");
1817
verify.quickInfoIs('(local function) bar3(): void');

tests/cases/fourslash/multilineCommentBeforeOpenBrace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
////}
99
////function a() {
1010
//// /* %^ */ }/*3*/
11-
debugger;
11+
1212
format.document();
1313
goTo.marker('1');
1414
verify.currentLineContentIs('function test() /* %^ */ {');

tests/cases/fourslash/spaceAfterReturn.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
////return[1];/*2*/
66
////return ;/*3*/
77
////}
8-
debugger;
8+
99
format.document();
1010
goTo.marker("1");
1111
verify.currentLineContentIs(" return 1;");

0 commit comments

Comments
 (0)