From b14ec9983889210261763f8febee73ec40c178c7 Mon Sep 17 00:00:00 2001 From: Arya Irani Date: Sat, 25 Nov 2023 13:43:17 -0500 Subject: [PATCH] transcript showing test without metadata --- unison-src/transcripts/test-command.md | 2 +- unison-src/transcripts/test-command.output.md | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/unison-src/transcripts/test-command.md b/unison-src/transcripts/test-command.md index 3d8bde394a..da8effa92e 100644 --- a/unison-src/transcripts/test-command.md +++ b/unison-src/transcripts/test-command.md @@ -32,7 +32,6 @@ test2 = [Ok "test2"] ```ucm:hide .lib> add -.lib> link .builtin.metadata.isTest test2 ``` ```ucm @@ -45,6 +44,7 @@ test2 = [Ok "test2"] ```unison test3 : [Result] test3 = [Ok "test3"] +test4 = [Ok "test4"] ``` ```ucm:hide diff --git a/unison-src/transcripts/test-command.output.md b/unison-src/transcripts/test-command.output.md index 0dbc2e8391..e3ae2f815b 100644 --- a/unison-src/transcripts/test-command.output.md +++ b/unison-src/transcripts/test-command.output.md @@ -97,6 +97,7 @@ test2 = [Ok "test2"] ```unison test3 : [Result] test3 = [Ok "test3"] +test4 = [Ok "test4"] ``` ```ucm @@ -108,6 +109,7 @@ test3 = [Ok "test3"] ⍟ These new definitions are ok to `add`: test3 : [Result] + test4 : [Result] ``` ```ucm @@ -126,11 +128,16 @@ test3 = [Ok "test3"] + + + + New test results: ◉ hello.lib.test3 test3 + ◉ hello.lib.test4 test4 - ✅ 1 test(s) passing + ✅ 2 test(s) passing Tip: Use view hello.lib.test3 to view the source of a test.