Use "▶" for test code lens

I find that this makes code lenses stand out more.
This commit is contained in:
Jeremy Kolb 2019-01-30 22:09:27 -05:00
parent 28fdb8d03c
commit 57899d66fa

View file

@ -618,7 +618,7 @@ pub fn handle_code_lens(
for runnable in world.analysis().runnables(file_id)? {
let title = match &runnable.kind {
RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("Run Test"),
RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("▶️Run Test"),
RunnableKind::Bench { name: _ } => Some("Run Bench"),
_ => None,
};