parent
799364de87
commit
4ba562d2dd
2 changed files with 10 additions and 0 deletions
9
codex-rs/.config/nextest.toml
Normal file
9
codex-rs/.config/nextest.toml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
[profile.default]
|
||||
# Do not increase, fix your test instead
|
||||
slow-timeout = { period = "15s", terminate-after = 2 }
|
||||
|
||||
|
||||
[[profile.default.overrides]]
|
||||
# Do not add new tests here
|
||||
filter = 'test(rmcp_client) | test(humanlike_typing_1000_chars_appears_live_no_placeholder)'
|
||||
slow-timeout = { period = "1m", terminate-after = 4 }
|
||||
|
|
@ -1721,6 +1721,7 @@ mod tests {
|
|||
use ratatui::layout::Rect;
|
||||
|
||||
#[test]
|
||||
#[ignore = "very slow"]
|
||||
fn composer_input_renders_typed_characters() {
|
||||
let mut composer = ComposerInput::new();
|
||||
let key = KeyEvent::new(KeyCode::Char('a'), KeyModifiers::NONE);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue