Moved to workspaces crate... don't feel great about it

This commit is contained in:
Mikayla Maki 2022-11-10 21:08:20 -08:00
parent e578f2530e
commit a5edac312e
12 changed files with 128 additions and 97 deletions

View file

@ -320,7 +320,7 @@ mod tests {
use super::*;
use editor::Editor;
use gpui::TestAppContext;
use project::Project;
use project::{Db, Project};
use workspace::{AppState, Workspace};
#[test]
@ -345,7 +345,7 @@ mod tests {
cx.update(|cx| {
editor::init(cx);
workspace::init(app_state.clone(), cx);
workspace::init(app_state.clone(), cx, Db::open_in_memory("test"));
init(cx);
});