mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
add conflict resolver
This commit is contained in:
@ -4,9 +4,8 @@ pub mod helper;
|
||||
use crate::helper::*;
|
||||
use backend_service::configuration::{get_client_server_configuration, ClientServerConfiguration};
|
||||
use flowy_sdk::{FlowySDK, FlowySDKConfig};
|
||||
use flowy_user::{entities::UserProfile, services::database::UserDB};
|
||||
use flowy_user::entities::UserProfile;
|
||||
use lib_infra::uuid_string;
|
||||
use std::sync::Arc;
|
||||
|
||||
pub mod prelude {
|
||||
pub use crate::{event_builder::*, helper::*, *};
|
||||
@ -52,15 +51,3 @@ impl FlowySDKTest {
|
||||
context.user_profile
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MigrationTest {
|
||||
pub db: UserDB,
|
||||
}
|
||||
|
||||
impl MigrationTest {
|
||||
pub fn new() -> Self {
|
||||
let dir = root_dir();
|
||||
let db = UserDB::new(&dir);
|
||||
Self { db }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user