as-test 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/README.md +1 -1
- package/assembly/index.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,4 +4,5 @@ v0.0.2 - Diff between expected and recieved results
|
|
|
4
4
|
v0.0.3 - Added `afterEach`, `beforeEach`, `afterAll`, `beforeAll`, `test`, `it`, `.toBeGreaterThan`, `.toBeGreaterThanOrEqualTo`, ect..
|
|
5
5
|
v0.0.4 - Fix import issue in README usage section
|
|
6
6
|
v0.0.5 - Switch errors to be thrown at compile time instead of runtime
|
|
7
|
-
v0.0.6 - Failed tests should be pushed to bottom of logs
|
|
7
|
+
v0.0.6 - Failed tests should be pushed to bottom of logs
|
|
8
|
+
v0.0.8 - Fix readme typo in v0.0.7
|
package/README.md
CHANGED
package/assembly/index.ts
CHANGED
|
@@ -214,7 +214,7 @@ export function run(options: RunOptions = new RunOptions()): void {
|
|
|
214
214
|
console.log(rainbow.boldMk(rainbow.green(`| _ || __| ___|_ _|| __|| __||_ _|`)));
|
|
215
215
|
console.log(rainbow.boldMk(rainbow.green(`| ||__ ||___| | | | __||__ | | | `)));
|
|
216
216
|
console.log(rainbow.boldMk(rainbow.green(`|__|__||_____| |_| |_____||_____| |_| `)));
|
|
217
|
-
console.log(rainbow.dimMk ("\n------------------- v0.0.
|
|
217
|
+
console.log(rainbow.dimMk ("\n------------------- v0.0.8 -------------------\n"));
|
|
218
218
|
const suites = groups.length;
|
|
219
219
|
let failed = 0;
|
|
220
220
|
let tests = 0;
|