mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 13:39:12 +00:00
a4c30f7a4b
This PR adds fuzz for richtext, adding new tests covering checkout, event, and time machine
5 lines
192 B
Rust
5 lines
192 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
use loro_internal::fuzz::richtext::{test_multi_sites, Action};
|
|
|
|
fuzz_target!(|actions: Vec<Action>| { test_multi_sites(5, &mut actions.clone()) });
|