Merge branch 'main' into randomized-tests-operation-script

In randomized integration test, incorporate random updates of existing
files into the test's new structure.
This commit is contained in:
Max Brunsfeld 2023-01-24 12:39:24 -08:00
commit 9c25d37dfc
203 changed files with 4139 additions and 2989 deletions

View file

@ -102,10 +102,7 @@ impl TestServer {
async fn create_client(&mut self, cx: &mut TestAppContext, name: &str) -> TestClient {
cx.update(|cx| {
cx.set_global(HomeDir(Path::new("/tmp/").to_path_buf()));
let mut settings = Settings::test(cx);
settings.projects_online_by_default = false;
cx.set_global(settings);
cx.set_global(Settings::test(cx));
});
let http = FakeHttpClient::with_404_response();