Skip to content

Commit

Permalink
fix: add placeholder test
Browse files Browse the repository at this point in the history
This test is not expected to do anything at all. It's just there
so that jest does not have to run with the --passWithNoTests
flag which can become an issue later on.

Signed-off-by: Alexander Twrdik <[email protected]>
  • Loading branch information
DiCanio committed Jul 31, 2024
1 parent 6203ac0 commit 23a3f86
Show file tree
Hide file tree
Showing 3 changed files with 173 additions and 0 deletions.
167 changes: 167 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"rimraf": "^6.0.1",
"rollup": "^4.18.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
Expand Down
5 changes: 5 additions & 0 deletions test/unit/placeholder.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import {expect, test} from '@jest/globals';

test("placeholder", () => {
expect(true);
});

0 comments on commit 23a3f86

Please sign in to comment.