mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
extension: Re-enable test_extension_store_with_test_extension
test (#18046)
The `test_extension_store_with_test_extension` test was disabled in #15446, which got merged before re-enabling the test. This PR re-enables that test. Release Notes: - N/A
This commit is contained in:
parent
106ca5076f
commit
eef44aff7f
1 changed files with 0 additions and 6 deletions
|
@ -457,8 +457,6 @@ async fn test_extension_store(cx: &mut TestAppContext) {
|
|||
});
|
||||
}
|
||||
|
||||
// TODO remove
|
||||
#[ignore]
|
||||
#[gpui::test]
|
||||
async fn test_extension_store_with_test_extension(cx: &mut TestAppContext) {
|
||||
init_test(cx);
|
||||
|
@ -564,10 +562,6 @@ async fn test_extension_store_with_test_extension(cx: &mut TestAppContext) {
|
|||
let mut encoder = GzipEncoder::new(BufReader::new(bytes.as_slice()));
|
||||
encoder.read_to_end(&mut gzipped_bytes).await.unwrap();
|
||||
Ok(Response::new(gzipped_bytes.into()))
|
||||
// } else if uri == WASI_ADAPTER_URL {
|
||||
// let binary_contents =
|
||||
// include_bytes!("wasi_snapshot_preview1.reactor.wasm").as_slice();
|
||||
// Ok(Response::new(binary_contents.into()))
|
||||
} else {
|
||||
Ok(Response::builder().status(404).body("not found".into())?)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue