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 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
@@ -3,7 +3,7 @@
3
3
  | _ || __| ___|_ _|| __|| __||_ _|
4
4
  | ||__ ||___| | | | __||__ | | |
5
5
  |__|__||_____| |_| |_____||_____| |_|
6
- v0.0.5
6
+ v0.0.8
7
7
  </pre>
8
8
  </h5>
9
9
 
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.6 -------------------\n"));
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",