We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a21e0ed commit f0178f4Copy full SHA for f0178f4
1 file changed
crates/vite_task_bin/tests/e2e_snapshots/main.rs
@@ -19,11 +19,8 @@ use vite_workspace::find_workspace_root;
19
20
/// Timeout for each step in e2e tests.
21
/// Windows CI needs a longer timeout due to Git Bash startup overhead and slower I/O.
22
-const STEP_TIMEOUT: Duration = if cfg!(windows) {
23
- Duration::from_secs(60)
24
-} else {
25
- Duration::from_secs(20)
26
-};
+const STEP_TIMEOUT: Duration =
+ if cfg!(windows) { Duration::from_secs(60) } else { Duration::from_secs(20) };
27
28
/// Screen size for the PTY terminal. Large enough to avoid line wrapping.
29
const SCREEN_SIZE: ScreenSize = ScreenSize { rows: 500, cols: 500 };
0 commit comments