File tree Expand file tree Collapse file tree 2 files changed +57
-62
lines changed Expand file tree Collapse file tree 2 files changed +57
-62
lines changed Original file line number Diff line number Diff line change @@ -12,66 +12,7 @@ Requires:
1212- Git
1313- Node 10+
1414
15- ## Development
15+ ## Run
1616
17- Run the postgres db and api server.
18-
19- Setup the extension environmental variables.
20-
21- /src/.env
22-
23- ```
24- LOG=true #show hide debugging logs
25- ```
26-
27- Setup the web app environmental variables.
28-
29- /web-app/.env.local
30-
31- ```
32- REACT_APP_DEBUG=true # show/hide web debugger
33- REACT_APP_GQL_URI=http://localhost:4000/graphql
34- REACT_APP_GQL_AUTH_TOKEN={YOUR_API_AUTH_TOKEN}
35- ```
36-
37- Run ` npm run build ` . Press F5 to open a new development window.
38-
39- Open the tutorial using ` cmd+shift+p ` on mac, and select the action ` coderoad.start ` .
40-
41- ## Extension Settings
42-
43- Include if your extension adds any VS Code settings through the ` contributes.configuration ` extension point.
44-
45- For example:
46-
47- This extension contributes the following settings:
48-
49- - ` coderoad.start ` : starts the extension
50-
51- ## Supported Programming Languages
52-
53- To support a new programming language, the test runner needs to support a format called TAP (https://testanything.org/ ).
54-
55- Some test frameworks can be modified to use tap, see a list of TAP reporters: https://github.com/sindresorhus/awesome-tap#reporters .
56-
57- ### JavaScript
58-
59- ##### Jest
60-
61- ``` json
62- {
63- "scripts" : {
64- "test" : " jest"
65- },
66- "devDependencies" : {
67- "jest-tap-reporter" : " 1.9.0"
68- },
69- "jest" : {
70- "reporters" : [" jest-tap-reporter" ]
71- }
72- }
73- ```
74-
75- ## Known Issues
76-
77- There are no known issues at this time.
17+ 1 . Open the command prompt: ` cmd/ctrl + shift + p `
18+ 2 . Search for and run ` coderoad:start `
Original file line number Diff line number Diff line change 1+ # Setup
2+
3+ ## Development
4+
5+ Run the postgres db and api server.
6+
7+ Setup the extension environmental variables.
8+
9+ /src/.env
10+
11+ ```
12+ LOG=true #show hide debugging logs
13+ ```
14+
15+ Setup the web app environmental variables.
16+
17+ /web-app/.env.local
18+
19+ ```
20+ REACT_APP_DEBUG=true # show/hide web debugger
21+ REACT_APP_GQL_URI=http://localhost:4000/graphql
22+ ```
23+
24+ Run ` npm run build ` . Press F5 to open a new development window.
25+
26+ Open the tutorial using ` cmd+shift+p ` on mac, and select the action ` coderoad.start ` .
27+
28+ ## Supported Programming Languages
29+
30+ To support a new programming language, the test runner needs to support a format called TAP (https://testanything.org/ ).
31+
32+ Some test frameworks can be modified to use tap, see a list of TAP reporters: https://github.com/sindresorhus/awesome-tap#reporters .
33+
34+ ### JavaScript
35+
36+ ##### Jest
37+
38+ ``` json
39+ {
40+ "scripts" : {
41+ "test" : " jest"
42+ },
43+ "devDependencies" : {
44+ "jest-tap-reporter" : " 1.9.0"
45+ },
46+ "jest" : {
47+ "reporters" : [" jest-tap-reporter" ]
48+ }
49+ }
50+ ```
51+
52+ ## Known Issues
53+
54+ There are no known issues at this time.
You can’t perform that action at this time.
0 commit comments