Skip to content

Commit 3667c6a

Browse files
committed
remove debug statements from tests
1 parent 4e17787 commit 3667c6a

19 files changed

+16
-19
lines changed

tests/cases/fourslash/memberListOfClass.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
////f./**/
1111

1212
goTo.marker();
13-
debug.printCompletionListMembers();
1413
verify.memberListCount(2);
1514
verify.memberListContains('pubMeth', '() => void');
1615
verify.memberListContains('pubProp', 'number');

tests/cases/fourslash/memberListOfExportedClass.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@
1111
////c./**/ // test on c.
1212

1313
goTo.marker();
14-
debug.printCompletionListMembers();
1514
verify.memberListCount(1);
1615
verify.memberListContains('pub', 'number');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
//// // [|TODO|]
2-
debugger;
2+
33
verify.todoCommentsInCurrentFile(["TODO"]);

tests/cases/fourslash/todoComments10.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
//// [|todo 1|]
33
//// [|hack 2|]
44
//// */
5-
debugger;
5+
66
verify.todoCommentsInCurrentFile(["TODO", "HACK"]);

tests/cases/fourslash/todoComments11.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
//// [|TODO(jason) 1|]
33
//// [|HACK 2|]
44
//// */
5-
debugger;
5+
66
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);

tests/cases/fourslash/todoComments12.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
//// [|TODO(jason) 1|]
33
//// [|HACK 2|]
44
//// */
5-
debugger;
5+
66
verify.todoCommentsInCurrentFile(["HACK", "TODO(jason)"]);
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
//// TODO
22

3-
debugger;
43
verify.todoCommentsInCurrentFile(["TODO"]);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
//// BAR // [|TODO|]
2-
debugger;
2+
33
verify.todoCommentsInCurrentFile(["TODO"]);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
//// "// HACK 1";
2-
debugger;
2+
33
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
//// //// [|HACK 1|]
2-
debugger;
2+
33
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);

0 commit comments

Comments
 (0)