test(typescript): enable typescript-verify on most tests (#1781)

master
Lucas Azzola 2017-05-28 10:57:07 +10:00 committed by Christopher Chedeau
parent 383aaca0e4
commit 2a58e6bc06
24 changed files with 26 additions and 27 deletions

View File

@ -1,2 +1,2 @@
run_spec(__dirname);
run_spec(__dirname, { trailingComma: "all" });
run_spec(__dirname, null, ["typescript"]);
run_spec(__dirname, { trailingComma: "all" }, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, null, ["babylon"]);
run_spec(__dirname, null, ["babylon", "typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, null, ["babylon"]);
run_spec(__dirname, null, ["babylon", "typescript"]);

View File

@ -1,3 +1,3 @@
run_spec(__dirname);
// FIXME export_default_function_declaration_async.js flow != babylon output
run_spec(__dirname, { parser: "babylon" });
run_spec(__dirname, { parser: "babylon" }, ["typescript"]);

View File

@ -1,2 +1 @@
// TODO: Re-enable Flow when the following fix is merged facebook/flow#3234.
run_spec(__dirname, { parser: "babylon" });
run_spec(__dirname, null, ["babylon", "typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, null, []);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, null, ["babylon"]);
run_spec(__dirname, null, ["babylon", "typescript"]);

View File

@ -1,2 +1,2 @@
// flow-parser@0.38.0 fails to parse `1.e1`, so use babylon here.
run_spec(__dirname, { parser: "babylon" });
run_spec(__dirname, { parser: "babylon" }, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, { parser: "babylon" });
run_spec(__dirname, { parser: "babylon" }, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1,2 +1,2 @@
run_spec(__dirname);
run_spec(__dirname, { tabWidth: 4 });
run_spec(__dirname, null, ["typescript"]);
run_spec(__dirname, { tabWidth: 4 }, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname);
run_spec(__dirname, null, ["typescript"]);

View File

@ -1 +1 @@
run_spec(__dirname, null, ["babylon"]);
run_spec(__dirname, null, ["babylon", "typescript"]);