diff --git a/tasks/coverage/tests/mod.rs b/tasks/coverage/tests/mod.rs index 47209bb67..9ef995e5e 100644 --- a/tasks/coverage/tests/mod.rs +++ b/tasks/coverage/tests/mod.rs @@ -1,11 +1,10 @@ -use oxc_coverage::{ - AppArgs, BabelCase, BabelSuite, PrinterTest262Case, Suite, Test262Case, Test262Suite, - TypeScriptCase, TypeScriptSuite, -}; - #[cfg(feature = "tarpaulin")] #[test] fn test() { + use oxc_coverage::{ + AppArgs, BabelCase, BabelSuite, PrinterTest262Case, Suite, Test262Case, Test262Suite, + TypeScriptCase, TypeScriptSuite, + }; let args = AppArgs { filter: None, detail: false, diff: false }; Test262Suite::::new().run("Test262", &args); BabelSuite::::new().run("Babel", &args);