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:
parent
a6f6209f52
commit
7ff67017f2
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue