as-test 0.0.3 → 0.0.4

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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,9 @@
1
1
  <h5 align="center">
2
- <pre>
3
- _____ _____ _____ _____ _____ _____
2
+ <pre> _____ _____ _____ _____ _____ _____
4
3
  | _ || __| ___|_ _|| __|| __||_ _|
5
4
  | ||__ ||___| | | | __||__ | | |
6
5
  |__|__||_____| |_| |_____||_____| |_|
7
- v0.0.3
6
+ v0.0.4
8
7
  </pre>
9
8
  </h5>
10
9
 
@@ -66,9 +65,9 @@ describe("Math operations", () => {
66
65
  });
67
66
  });
68
67
 
69
- describe("Array manipulation", () => {
70
- let myArray;
68
+ let myArray: i32[] = [];
71
69
 
70
+ describe("Array manipulation", () => {
72
71
  beforeAll(() => {
73
72
  myArray = [1, 2, 3];
74
73
  });
@@ -87,8 +86,8 @@ run({
87
86
  });
88
87
  ```
89
88
 
90
- ```
91
- _____ _____ _____ _____ _____ _____
89
+ <h5>
90
+ <pre> _____ _____ _____ _____ _____ _____
92
91
  | _ || __| ___|_ _|| __|| __||_ _|
93
92
  | ||__ ||___| | | | __||__ | | |
94
93
  |__|__||_____| |_| |_____||_____| |_|
@@ -115,7 +114,8 @@ Test Suites: 0 failed, 2 total
115
114
  Tests: 0 failed, 8 total
116
115
  Snapshots: 0 total
117
116
  Time: 101.812μs
118
- ```
117
+ </pre>
118
+ </h5>
119
119
 
120
120
  If you use this project in your codebase, consider dropping a [⭐ HERE](https://github.com/JairusSW/as-test). I would really appreciate it!
121
121
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",