Skip to content

Commit

Permalink
Added Sdk Tests & Updated Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
maganuk committed Jan 9, 2024
1 parent f2da40f commit 73d1d8c
Show file tree
Hide file tree
Showing 6 changed files with 4,941 additions and 1,879 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true
"project": ["./tsconfig.json", "./tsconfig.cjs.json", "./tsconfig.esm.json", "./tsconfig.test.json"]
},
"rules": {
"unused-imports/no-unused-imports": "error",
Expand Down
14 changes: 14 additions & 0 deletions jest.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"roots": [
"<rootDir>/tests"
],
"testMatch": [
"**/*.spec.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{ "tsconfig": "tsconfig.test.json" }
]
}
}
Loading

0 comments on commit 73d1d8c

Please sign in to comment.