diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-04 18:20:05 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-04 18:23:05 -0500 |
commit | dcddbee07e20163ae167dd67fe58f0776f9acb64 (patch) | |
tree | 4a55c4bd42859f7bebae9d9cb31c6ae5fa0e3f9a /test/cache-map.test.js | |
parent | 4b80a486181b902f3b1e089b584818ce725a91be (diff) |
Update how ts comments are handled
Diffstat (limited to 'test/cache-map.test.js')
-rw-r--r-- | test/cache-map.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cache-map.test.js b/test/cache-map.test.js index 3e7def1f..df891188 100644 --- a/test/cache-map.test.js +++ b/test/cache-map.test.js @@ -30,7 +30,7 @@ function testConstructor() { [true, () => new CacheMap(1.5)], [true, () => new CacheMap(Number.NaN)], [true, () => new CacheMap(Number.POSITIVE_INFINITY)], - // @ts-ignore - Ignore because it should throw an error + // @ts-expect-error - Ignore because it should throw an error [true, () => new CacheMap('a')] ]; |