diff options
author | János Veres <janos.veres@gmail.com> | 2020-12-02 20:26:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-02 20:26:04 +0100 |
commit | 93d9f51d16711e6ec0763e1189eb1a57a5ba8e3e (patch) | |
tree | 3bc8324a7122567de62c2f291a5996436cb21eeb /cli/tests/integration_tests.rs | |
parent | 95ccc1a52f891841cfdfbb87229cef17139be399 (diff) |
fix(cli): add hygiene pass to transpile pipeline (#8586)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index c99033020..aca2df99c 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2927,6 +2927,11 @@ itest!(no_check_decorators { output: "no_check_decorators.ts.out", }); +itest!(runtime_decorators { + args: "run --quiet --reload --no-check runtime_decorators.ts", + output: "runtime_decorators.ts.out", +}); + itest!(lib_ref { args: "run --quiet --unstable --reload lib_ref.ts", output: "lib_ref.ts.out", |