ep: Enable workspace test-support (#46395)

Some code got added to `workspace` that prevents us from running tests
for the `edit_prediction(cli)` crates specifically without the
`test-support` feature flag.

Release Notes:

- N/A

Co-authored-by: Ben Kunkle <ben@zed.dev>
This commit is contained in:
Agus Zubiaga 2026-01-08 18:30:07 -03:00 committed by GitHub
parent fdd2dd5748
commit 23f571d64c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 2 deletions

1
Cargo.lock generated
View file

@ -5313,6 +5313,7 @@ dependencies = [
"util",
"wasmtime",
"watch",
"workspace",
"zeta_prompt",
]

View file

@ -78,4 +78,5 @@ lsp.workspace = true
parking_lot.workspace = true
project = { workspace = true, features = ["test-support"] }
settings = { workspace = true, features = ["test-support"] }
workspace = { workspace = true, features = ["test-support"] }
zlog.workspace = true

View file

@ -67,8 +67,9 @@ similar = "2.7.0"
ignored = ["wasmtime"]
[dev-dependencies]
indoc.workspace = true
gpui = { workspace = true, features = ["test-support"] }
project = { workspace = true, features = ["test-support"] }
indoc.workspace = true
pretty_assertions.workspace = true
project = { workspace = true, features = ["test-support"] }
tempfile.workspace = true
workspace = { workspace = true, features = ["test-support"] }