mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
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.
This commit is contained in:
parent
d6e2434f73
commit
b2e83f81e1
4 changed files with 8 additions and 6 deletions
|
@ -70,7 +70,7 @@ async fn test_write_quit() -> anyhow::Result<()> {
|
|||
async fn test_write_concurrent() -> anyhow::Result<()> {
|
||||
let mut file = tempfile::NamedTempFile::new()?;
|
||||
let mut command = String::new();
|
||||
const RANGE: RangeInclusive<i32> = 1..=5000;
|
||||
const RANGE: RangeInclusive<i32> = 1..=1000;
|
||||
let mut app = helpers::AppBuilder::new()
|
||||
.with_file(file.path(), None)
|
||||
.build()?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue