viewpoint-core 0.4.3

High-level browser automation API for Viewpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

#[test]
fn test_storage_state_options() {
    let options = StorageStateOptions::new()
        .indexed_db(true)
        .indexed_db_max_entries(500);

    assert!(options.indexed_db);
    assert_eq!(options.indexed_db_max_entries, 500);
}