mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-07-02 06:35:09 -05:00
remove debug statements from tests
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
////f./**/
|
||||
|
||||
goTo.marker();
|
||||
debug.printCompletionListMembers();
|
||||
verify.memberListCount(2);
|
||||
verify.memberListContains('pubMeth', '() => void');
|
||||
verify.memberListContains('pubProp', 'number');
|
||||
@@ -11,6 +11,5 @@
|
||||
////c./**/ // test on c.
|
||||
|
||||
goTo.marker();
|
||||
debug.printCompletionListMembers();
|
||||
verify.memberListCount(1);
|
||||
verify.memberListContains('pub', 'number');
|
||||
@@ -1,3 +1,3 @@
|
||||
//// // [|TODO|]
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|todo 1|]
|
||||
//// [|hack 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO", "HACK"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|TODO(jason) 1|]
|
||||
//// [|HACK 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|TODO(jason) 1|]
|
||||
//// [|HACK 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["HACK", "TODO(jason)"]);
|
||||
@@ -1,4 +1,3 @@
|
||||
//// TODO
|
||||
|
||||
debugger;
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// BAR // [|TODO|]
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// "// HACK 1";
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// //// [|HACK 1|]
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// /**** [|HACK 1 |]*/ a
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO(jason)", "HACK"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// // not TODO
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// // [|TODO with stuff|]
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -1,3 +1,3 @@
|
||||
//// // TODOnomatch
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|TODO 1|]
|
||||
//// [|TODO 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// * [|TODO 1|]
|
||||
//// * [|TODO 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|TODO 1|]
|
||||
//// [|HACK 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO", "HACK"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|HACK 1|]
|
||||
//// [|TODO 2|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO", "HACK"]);
|
||||
@@ -2,5 +2,5 @@
|
||||
//// [|TODO HACK|]
|
||||
//// [|HACK TODO|]
|
||||
//// */
|
||||
debugger;
|
||||
|
||||
verify.todoCommentsInCurrentFile(["TODO", "HACK"]);
|
||||
Reference in New Issue
Block a user