Skip to content

Commit 14d4881

Browse files
committed
add new lines
1 parent 61eea77 commit 14d4881

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,19 @@ Your pull request should:
3030

3131
## Running the Tests
3232
To run all tests, invoke the runtests target using jake:
33+
3334
`jake runtests`
3435

3536
This will all tests; to run only a specific subset of tests, use:
37+
3638
`jake runtests tests=<regex>`
39+
3740
e.g. to run all compiler baseline tests:
41+
3842
`jake runtests tests=compiler`
43+
3944
or to run specifc test:tests\cases\compiler\2dArrays.ts
45+
4046
`jake runtests tests=2dArrays`
4147

4248
## Adding a Test
@@ -56,9 +62,11 @@ These files support metadata tags in the format // @name: value . The supported
5662
Compiler testcases generate baselines that track the emitted .js, the errors produced by the compiler, and the type of each expression in the file. Additionally, some testcases opt in to baselining the source map output.
5763

5864
When a change in the baselines is detected, the test will fail. To inspect changes vs the expected baselines, use
65+
5966
`jake diff`
6067

6168
After verifying that the changes in the baselines are correct, run
69+
6270
`jake baseline-accept`
6371

6472
to establish the new baselines as the desired behavior. This will change the files in tests\baselines\reference, which should be included as part of your commit. It's important to carefully validate changes in the baselines.

0 commit comments

Comments
 (0)