1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

Move TestFmt to the end of tests, because slow

This commit is contained in:
Ryan Dahl 2019-08-26 10:57:14 -04:00
parent a6f6209f52
commit 7ff67017f2

View file

@ -46,11 +46,11 @@ def main():
TestDenoDir,
TestBenchmark,
TestIsTty,
# It is very slow, so do TestFmt at the end.
TestFmt,
]
test_cases += permission_prompt_tests()
test_cases += complex_permissions_tests()
# It is very slow, so do TestFmt at the end.
test_cases += [TestFmt]
with http_server.spawn():
run_tests(test_cases)