Skip to content

Commit cf55edd

Browse files
committed
fix: type issue
1 parent 8f89a1f commit cf55edd

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ v0.0.3 - Added `afterEach`, `beforeEach`, `afterAll`, `beforeAll`, `test`, `it`,
55
v0.0.4 - Fix import issue in README usage section
66
v0.0.5 - Switch errors to be thrown at compile time instead of runtime
77
v0.0.6 - Failed tests should be pushed to bottom of logs
8-
v0.0.8 - Fix readme typo in v0.0.7
8+
v0.0.8 - Fix readme typo in v0.0.7
9+
v0.0.9 - Fix type issue
10+
v0.1.0 - Fix more type issues

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
| _ || __| ___|_ _|| __|| __||_ _|
44
| ||__ ||___| | | | __||__ | | |
55
|__|__||_____| |_| |_____||_____| |_|
6-
v0.0.9
6+
v0.1.0
77
</pre>
88
</h5>
99

assembly/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export function run(options: RunOptions = new RunOptions()): void {
214214
console.log(rainbow.boldMk(rainbow.green(`| _ || __| ___|_ _|| __|| __||_ _|`)));
215215
console.log(rainbow.boldMk(rainbow.green(`| ||__ ||___| | | | __||__ | | | `)));
216216
console.log(rainbow.boldMk(rainbow.green(`|__|__||_____| |_| |_____||_____| |_| `)));
217-
console.log(rainbow.dimMk ("\n------------------- v0.0.9 -------------------\n"));
217+
console.log(rainbow.dimMk ("\n------------------- v0.1.0 -------------------\n"));
218218
const suites = groups.length;
219219
let failed = 0;
220220
let tests = 0;

assembly/src/node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Verdict } from "..";
22

33
export class Node {
44
public verdict: Verdict = Verdict.Unreachable;
5-
report(): ReportLogs | null {
5+
report(): string | null {
66
return null;
77
}
88
}

0 commit comments

Comments
 (0)