From 27625208020445033d142fdb92cef858f1bfaade Mon Sep 17 00:00:00 2001 From: zihang Date: Fri, 20 Dec 2024 10:06:02 +0800 Subject: [PATCH] fix: link to playground Close 373 --- moonbit-tour/tour/chapter1_basics/lesson12_test/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonbit-tour/tour/chapter1_basics/lesson12_test/index.md b/moonbit-tour/tour/chapter1_basics/lesson12_test/index.md index 143f015e..b8a9a0f2 100644 --- a/moonbit-tour/tour/chapter1_basics/lesson12_test/index.md +++ b/moonbit-tour/tour/chapter1_basics/lesson12_test/index.md @@ -2,7 +2,7 @@ MoonBit has built-in testing support. There is no need to import or configure extra packages or tools; just use the test block and write the test code inside. -**Note: this feature is not supported in this tour. You can try it in our [playground](try.moonbitlang.com) or in your terminal if the MoonBit toolchain is installed.** +**Note: this feature is not supported in this tour. You can try it in our [playground](https://try.moonbitlang.com) or in your terminal if the MoonBit toolchain is installed.** In the first test block, we test some properties using the built-in functions `assert_eq`, `assert_false`, and `assert_true`. By running `moon test` in the terminal or clicking the test button in your integrated development environment (IDE), the tests will be executed.