aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorSkyler Hawthorne2023-02-04 21:20:23 +0000
committerGitHub2023-02-04 21:20:23 +0000
commitb2e83f81e10089a0e81ce33c4beb51aefc29a62e (patch)
tree52913187385f31b857e5f1bfcdfe3fe07b008fa5 /helix-term/src
parentd6e2434f735545ded269f228e3d93684d2be262a (diff)
enable rendering in integration tests (#5819)
This will allow testing more of the code base, as well as enable UI- specific testing. Debug mode builds are prohibitively slow for the tests, mostly because of the concurrency write tests. So there is now a profile for integration tests that sets the optimization level to 2 for a few helix crates, and lowers the number of rounds of concurrent writes to 1000.
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/application.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 05ceb874..a1685fcf 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -277,10 +277,6 @@ impl Application {
Ok(app)
}
- #[cfg(feature = "integration")]
- async fn render(&mut self) {}
-
- #[cfg(not(feature = "integration"))]
async fn render(&mut self) {
let mut cx = crate::compositor::Context {
editor: &mut self.editor,