File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " Test Features" ,
6
+ "type" : " shell" ,
7
+ "command" : " npx @devcontainers/cli features test" ,
8
+ "group" : {
9
+ "kind" : " test" ,
10
+ "isDefault" : true
11
+ },
12
+ "presentation" : {
13
+ "reveal" : " always" ,
14
+ "panel" : " dedicated" ,
15
+ "clear" : true
16
+ },
17
+ "problemMatcher" : []
18
+ },
19
+ ]
20
+ }
Original file line number Diff line number Diff line change @@ -24,3 +24,16 @@ sudo tailscale up --accept-routes
24
24
25
25
You'll only need to run ` tailscale up ` once per Codespace.
26
26
The Tailscale state will be saved between rebuilds.
27
+
28
+ ## Development
29
+
30
+ A convenient way to develop this feature is to use codespaces, as they start by
31
+ default with many of the dependencies required (at least Docker and npx).
32
+
33
+ Inside a codespace you can use the ` Tasks:Run Test Task ` command.
34
+
35
+ On a standalone machine tests can be run with:
36
+
37
+ ``` shell
38
+ npx @devcontainers/cli features test
39
+ ```
You can’t perform that action at this time.
0 commit comments