File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,20 @@ bazel test //test --spawn_strategy=local --config=dev
76
76
Update snapshot tests:
77
77
78
78
``` bash
79
- bazel test //update --spawn_strategy=local --config=dev
79
+ bazel test //test:update --spawn_strategy=local --config=dev
80
+ ```
81
+
82
+ NOTE: When adding a new test case, you need to manually create
83
+ an empty ` .snapshot.cc ` file for recording snapshot output
84
+ (it's not automatically generated).
85
+
86
+ Examples of running subsets of tests (follows directory structure):
87
+
88
+ ``` bash
89
+ bazel test //test:test_index --spawn_strategy=local --config=dev
90
+ bazel test //test:test_index_aliases --spawn_strategy=local --config=dev
91
+ bazel test //test:update_index --spawn_strategy=local --config=dev
92
+ bazel test //test:update_index_aliases --spawn_strategy=local --config=dev
80
93
```
81
94
82
95
### Indexing large projects
You can’t perform that action at this time.
0 commit comments