Skip to content

chore: prepare release note for 1.3.0 #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,21 @@ export default defineConfig({
title: "assemblyscript unittest framework",
description: "documents of assemblyscript unittest framework",
base: "/assemblyscript-unittest-framework/",
head: [["meta", { name: "google-site-verification", content: "762vxla4bLoGKFlH_iYkk7TVUhrwwpMFS2r7idty0_Y" }]],
sitemap: {
hostname: "https://wasm-ecosystem.github.io/assemblyscript-unittest-framework/",
},
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
search: {
provider: "local",
},
nav: [{ text: "Home", link: "/" }],
nav: [
{ text: "Home", link: "/" },
{ text: "Release", link: "/release-note" },
{ text: "npm", link: "https://www.npmjs.com/package/assemblyscript-unittest-framework" },
{ text: "Issue", link: "https://github.com/wasm-ecosystem/assemblyscript-unittest-framework/issues" },
],
sidebar: [
{
text: "Document",
Expand Down
5 changes: 4 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ hero:
- theme: brand
text: Quick Start
link: /quick-start
- theme: alt
- theme: brand
text: API documents
link: /api-documents
- theme: alt
text: Release Note
link: /release-note
---

<script setup>
Expand Down
18 changes: 18 additions & 0 deletions docs/release-note.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Release Note

## 1.3.0

🚀 Highlight Features

- Provides more command line options for finer-grained control of test cases.
- Deprecate `--testcase`, replace with `--testFiles`.
- Add `--testNamePattern <name pattern regex>`.
- Add `--onlyFailures` flag to re-run last failed test cases.
- Provides clearer log for user.
- Expose the framework's `log` function in the configuration file, and the logs redirected to this function will be appended to the final test report.
- Support test crashes and provide good call stack information.

🔄 Arch Changes

- During testing, the framework will execute all `test` functions once, but will not trigger callbacks, thereby collecting all test cases and then executing the test cases in sequence.
- Move lots of framework logic from Assemblyscript to Typescript to reduce the WASM linear memory usage and improve the performance.