Skip to content

Commit

Permalink
chore(release): v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AshGw committed Apr 17, 2024
1 parent 3607191 commit 7c2f2fd
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 2 deletions.
45 changes: 45 additions & 0 deletions CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-extended",
"version": "0.0.1",
"version": "0.0.2",
"private": false,
"description": "Extending the TS library with types and decorators that should've been built-in",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion tests/nullable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { describe, assertType, expect, expectTypeOf, test, it } from 'vitest';

test.fails('fail test', () => {
type _T = { foo: boolean };
// @ts-expect-error, it cannot be a _T, it should error out
// @ts-expect-error, it cannot be _T, it should error out
expect(assertType<_T>(null)).rejects.toBe(true);
});

Expand Down

0 comments on commit 7c2f2fd

Please sign in to comment.