File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -47,12 +47,27 @@ e.g. to run all compiler baseline tests:
47
47
jake runtests tests=compiler
48
48
```
49
49
50
- or to run specifc test: ` tests\cases\compiler\2dArrays.ts `
50
+ or to run a specific test: ` tests\cases\compiler\2dArrays.ts `
51
51
52
52
``` Shell
53
53
jake runtests tests=2dArrays
54
54
```
55
55
56
+ ## Debugging the tests
57
+
58
+ To debug the tests, invoke the runtests-browser using jake.
59
+ You will probably only want to debug one test at a time:
60
+
61
+ ``` Shell
62
+ jake runtests-browser tests=2dArrays
63
+ ```
64
+
65
+ You can specify which browser to use for debugging. Currently Chrome and IE are supported:
66
+
67
+ ``` Shell
68
+ jake runtests-browser tests=2dArrays browser=chrome
69
+ ```
70
+
56
71
## Adding a Test
57
72
To add a new testcase, simply place a ` .ts ` file in ` tests\cases\compiler ` containing code that exemplifies the bugfix or change you are making.
58
73
You can’t perform that action at this time.
0 commit comments