Update some tests because the original marker will be deleted

This commit is contained in:
zhengbli 2017-02-08 19:32:02 -08:00
parent 80568c5326
commit e238b38278
3 changed files with 9 additions and 9 deletions

View File

@ -4,9 +4,9 @@
//// function f1 () {
//// for (const elem of ["a", "b", "c"]) {
//// elem;
//// [|var x = 20;|]
//// }
//// [|var x = 20;
//// }|]
////}
////
verify.rangeAfterCodeFix("");
verify.rangeAfterCodeFix("}");

View File

@ -3,7 +3,7 @@
// @noUnusedLocals: true
// @noUnusedParameters: true
//// export {}
//// [|var x: string;|]
//// export var y: string;
//// [|var x: string;
//// export var y: string;|]
verify.rangeAfterCodeFix("");
verify.rangeAfterCodeFix("export var y: string;");

View File

@ -3,7 +3,7 @@
// @noUnusedLocals: true
// @noUnusedParameters: true
//// export {}
//// [|var x = function f1() {}|]
//// export var y: string;
//// [|var x = function f1() {}
//// export var y: string;|]
verify.rangeAfterCodeFix("");
verify.rangeAfterCodeFix("export var y: string;");