When contributing to this repository, please first discuss the change you wish to make via discussion or issue with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
The team will monitor pull requests. We'll do our best to provide updates and feedback throughout the process.
Before submitting a pull request, please make sure the following is done…
-
Fork the repo and create your branch from
main
. A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:
$ git clone https://github.com/<your_username>/ts-jest $ cd ts-jest $ git checkout -b my_branch
Note: Replace
<your_username>
with your GitHub username -
ts-jest
usesnpm
for running development scripts. If you haven't already done so, please install npm. -
Make sure you have a compatible version of
node
installed (As of April 14th 2021,v14.x
is recommended).node -v
-
Run
npm ci
.ts-jest
will automatically build source files intodist/
after installing dependencies. -
Ensure the test suite passes via
npm run test
.
Code that is written needs to be tested to ensure that it achieves the desired behaviour. Tests either fall into a unit test or an integration test.
The unit test files are associated with source files which are in src/
. If the scope of your work only requires a unit test,
this is where you will write it in. Tests here usually don't require much if any setup.
There will be situations however where the work you have done cannot be tested alone using unit tests. In situations like this,
you should write an integration test for your code. The integration tests reside within the e2e
directory.
Within this directory, there is a __tests__
directory. This is where you will write the integration test itself.
The tests within this directory execute jest itself using run-jest.ts
and assertions are usually made on one if not all
the output of the following status
, stdout
and stderr
. The other subdirectories within the e2e
directory are
where you will write the files that jest will run for your integration tests. Feel free to take a look at any of the tests
in the __tests__
directory within e2e
to have a better sense of how it is currently being done.
It is possible to run the integration test itself manually to inspect that the new behaviour is indeed correct. Here is a small code snippet of how to do just that. This is useful when debugging a failing test.
$ cd e2e/test-utils
$ node ../../node_modules/jest/bin/jest.js # It is possible to use node --inspect or ndb
PASS __tests__/test-utils.spec.ts
✓ stub (3ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 0.232 s, estimated 1 s
Ran all test suites.
If you are making changes to the website or documentation, test the website
folder and run the server to check if your
changes are being displayed accurately.
- Locate to the
website
directory and install any website specific dependencies by typing innpm ci
. - Following steps are to be followed for this purpose from the root directory.
$ cd website # Only needed if you are not already in the website directory $ npm ci $ npm run start
- You can run a development server to check if the changes you made are being displayed accurately by running
npm run start
in the website directory.
The ts-jest
website also offers documentation for older versions of ts-jest
, which you can edit in website/versioned_docs
.
After making changes to the current documentation in docs
, please check if any older versions of the documentation
have a copy of the file where the change is also relevant and apply the changes to the versioned_docs
as well.
We will be using GitHub Issues for our public bugs. We will keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new issue, try to make sure your problem doesn't already exist.
The best way to get your bug fixed is to provide a reduced test case. Please provide a public repository with a runnable example.
#testing
on Reactiflux or our GitHub discussion
- 2 spaces for indentation (no tabs).
- 120 character line length strongly preferred.
- Prefer
'
over"
. - ES6 syntax when possible.
- Use TypeScript.
- No semicolon (
;
) required - Trailing commas,
By contributing to ts-jest
, you agree that your contributions will be licensed under its MIT license.