Updating test due to CR changes. The order of the diagnostic messages has changed due to concatenation changes

This commit is contained in:
Jason Ramsay
2016-10-27 19:20:14 -07:00
parent 43bd2d8747
commit 05c2c9b67b

View File

@@ -8,6 +8,13 @@
//// var var = "c";
verify.getSyntacticDiagnostics(`[
{
"message": "\'types\' can only be used in a .ts file.",
"start": 20,
"length": 7,
"category": "error",
"code": 8010
},
{
"message": "Variable declaration expected.",
"start": 67,
@@ -28,13 +35,6 @@ verify.getSyntacticDiagnostics(`[
"length": 3,
"category": "error",
"code": 1134
},
{
"message": "\'types\' can only be used in a .ts file.",
"start": 20,
"length": 7,
"category": "error",
"code": 8010
}
]`);
verify.getSemanticDiagnostics(`[]`);