update test baselines

This commit is contained in:
Vladimir Matveev 2014-09-11 10:54:30 -07:00
parent 641e659ffd
commit 563b92cdce
4 changed files with 6 additions and 13 deletions

View file

@ -8,5 +8,4 @@
goTo.marker("1"); goTo.marker("1");
edit.insert("\r\n"); edit.insert("\r\n");
// Won't-fixed: Disable SmartIndent inside multiline string in TS. Should be 0 verify.indentationIs(0);
verify.indentationIs(8);

View file

@ -21,15 +21,11 @@
//// } //// }
////} ////}
// Behavior below is not ideal, ideal is in comments
goTo.marker("1"); goTo.marker("1");
//verify.indentationIs(0); verify.indentationIs(0);
verify.indentationIs(8);
goTo.marker("2"); goTo.marker("2");
//verify.indentationIs(0); verify.indentationIs(0);
verify.indentationIs(4);
goTo.marker("3"); goTo.marker("3");
//verify.indentationIs(0); verify.indentationIs(0);
verify.indentationIs(12);

View file

@ -11,7 +11,7 @@
//// case 1: //// case 1:
//// {| "indentation": 12 |} //// {| "indentation": 12 |}
//// break; //// break;
//// {| "indentation": 8 |} //// {| "indentation": 12 |} // content of case clauses is always indented relatively to case clause
//// } //// }
//// {| "indentation": 4 |} //// {| "indentation": 4 |}
////} ////}

View file

@ -8,6 +8,4 @@
goTo.marker(); goTo.marker();
edit.insert('case 1:\n'); edit.insert('case 1:\n');
// ideally would be 8 verify.indentationIs(8);
//verify.indentationIs(8);
verify.indentationIs(4);