Skip to content

Commit 765b76f

Browse files
committed
chore(version) version bumped
1 parent 2c3054e commit 765b76f

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @asenajs/asena
22

3+
## 0.6.2
4+
5+
### Patch Changes
6+
7+
- Added testing utilities with `mockComponent` and `mockComponentAsync` functions for automated dependency mocking in component tests.
8+
39
## 0.6.1
410

511
### Patch Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Asena
66

7-
[![Version](https://img.shields.io/badge/version-0.6.1-blue.svg)](https://asena.sh)
7+
[![Version](https://img.shields.io/badge/version-0.6.2-blue.svg)](https://asena.sh)
88
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
99
[![Bun Version](https://img.shields.io/badge/Bun-1.3.2%2B-blueviolet)](https://bun.sh)
1010

bun.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/test/mockComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export async function mockComponentAsync<T extends object>(
128128
const result = mockComponent(ComponentClass, options);
129129

130130
if (result instanceof Promise) {
131-
return await result;
131+
return result;
132132
}
133133

134134
return result;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asenajs/asena",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"author": "LibirSoft",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)