Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bazel): do not put temporary test folders next to test files
Currently the tool mappings and temporary environment directories of integration tests are always put directly into the test files directory. e.g. ``` <tmp>/.tool-mapping/node <tmp>/package.json ``` This worked fine in general but some tests might accidentally discover the `.tool-mapping-X` folder we created. This shouldn't happen as its an artifact of our integration test infrastructure. We can fix this by separating these folders into a structure like: ``` <tmp>/.tool-mapping/node <tmp>/test-sandbox/package.json ``` The test can then just run one folder deeper, in the `test-sandbox` folder.
- Loading branch information