Skip to content

Commit

Permalink
Merge pull request #72 from nicolasdaudin/chore/improve-tdd
Browse files Browse the repository at this point in the history
Migrated everything to TypeScript: files to .ts, created new types and interfaces, solved bugs, removed implicit any ...
Closes #64
  • Loading branch information
nicolasdaudin authored Mar 24, 2023
2 parents 4e2b567 + b80fd08 commit b27fc6b
Show file tree
Hide file tree
Showing 50 changed files with 3,016 additions and 1,930 deletions.
6 changes: 2 additions & 4 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ Pulpito is a side project that helped me learn the basics of Node.JS, Express, P

## Deploy

Pulpito API is available at https://pulpito-app.herokuapp.com/api/v1/

Pulpito webapp is currently deployed on Heroku at https://pulpito-app.herokuapp.com/

## API Documentation
## API

API documentation is available here : https://documenter.getpostman.com/view/18011617/2s8YYCt52e
Pulpito also comes with an API (actually with more features than the webapp), please check API documentation to see the different API routes : https://documenter.getpostman.com/view/18011617/2s8YYCt52e

## Tests

Expand Down
10 changes: 5 additions & 5 deletions jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"verbose": true,
"setupFiles": ["dotenv/config"],
"collectCoverageFrom": [
"src/**/*.{js|ts}",
"!public/**/*.{js|ts}",
"!src/*.{js|ts}",
"!coverage/**/*.{js|ts}",
"src/**/*.ts",
"!public/**/*.ts",
"!src/*.ts",
"!coverage/**/*.ts",
"!**/node_modules/**",
"!dev-data/**/*.{js|ts}"
"!dev-data/**/*.ts"
],
"preset": "ts-jest",
"testEnvironment": "node",
Expand Down
Loading

0 comments on commit b27fc6b

Please sign in to comment.