Skip to content

Commit

Permalink
refactor: moving unit tests over to jest (#672)
Browse files Browse the repository at this point in the history
* refactor: moving httpsnuppet-client-api tests over to jest

* refactor: moving api package tests over to jest

* fix: linting issues

* fix: broken tests

* fix: bumping up the global test timeout to 20s. codegen's slow, man

* fix: removing some circular refs from the dataset
  • Loading branch information
erunion authored Jul 9, 2023
1 parent 5fe262d commit 1f455f1
Show file tree
Hide file tree
Showing 55 changed files with 4,044 additions and 2,752 deletions.
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
!.alexrc.js

# api subpackage
packages/api/.nyc_output/
packages/api/coverage/
packages/api/dist/
packages/api/test/__fixtures__/sdk/

# httpsnippet-client-api subpackage
packages/httpsnippet-client-api/.nyc_output/
packages/httpsnippet-client-api/coverage/
packages/httpsnippet-client-api/dist/
packages/httpsnippet-client-api/node_modules/
packages/httpsnippet-client-api/test/__datasets__/**/output.js
5 changes: 2 additions & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@ CHANGELOG.md

# api subpackage
packages/api/.api/
packages/api/.nyc_output/
packages/api/coverage/
packages/api/.eslint*
packages/api/.gitignore
packages/api/.mocharc.json
packages/api/.prettier*
packages/api/CHANGELOG.md
packages/api/dist/
packages/api/example.js
packages/api/test/__fixtures__/sdk/

# httpsnippet-client-api subpackage
packages/httpsnippet-client-api/.nyc_output/
packages/httpsnippet-client-api/coverage/
packages/httpsnippet-client-api/dist/
packages/httpsnippet-client-api/test/__datasets__/**/output.js
Loading

0 comments on commit 1f455f1

Please sign in to comment.