@rcompat/test 0.1.4 → 0.1.6

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.
@@ -3,7 +3,7 @@ import type UnknownFunction from "@rcompat/type/UnknownFunction";
3
3
  export default class Assert<T> {
4
4
  #private;
5
5
  constructor(actual: T, test: Test);
6
- equals(expected: unknown): void;
6
+ equals<_Expected extends T>(expected: unknown): void;
7
7
  nequals(expected: unknown): void;
8
8
  true(): void;
9
9
  false(): void;
@@ -13,6 +13,5 @@ export default class Assert<T> {
13
13
  throws(expected?: string): void;
14
14
  tries(): void;
15
15
  fail(reason: string): void;
16
- type<_Expected extends T>(): void;
17
16
  }
18
17
  //# sourceMappingURL=Assert.d.ts.map
@@ -67,8 +67,6 @@ export default class Assert {
67
67
  fail(reason) {
68
68
  this.#failed(reason);
69
69
  }
70
- // type check, no body
71
- type() { }
72
70
  }
73
71
  ;
74
72
  //# sourceMappingURL=Assert.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rcompat/test",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "test module",
5
5
  "bugs": "https://github.com/rcompat/rcompat/issues",
6
6
  "license": "MIT",