diff --git a/test/src/instruction.rs b/test/src/instruction.rs index c7945e83..14cceb2f 100644 --- a/test/src/instruction.rs +++ b/test/src/instruction.rs @@ -129,6 +129,19 @@ impl Interaction { None, ) } + ( + Mouse::Press { + button, + at: Some(press_at), + }, + Mouse::Move(move_at), + ) if press_at == move_at => ( + Self::Mouse(Mouse::Press { + button, + at: Some(press_at), + }), + None, + ), ( Mouse::Click { button,