mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:
parent
fdd2dd5748
commit
23f571d64c
3 changed files with 5 additions and 2 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
|
@ -5313,6 +5313,7 @@ dependencies = [
|
|||
"util",
|
||||
"wasmtime",
|
||||
"watch",
|
||||
"workspace",
|
||||
"zeta_prompt",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"] }
|
||||
|
|
|
|||
Loading…
Reference in a new issue