0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/docs/contributing/development_tools.md

70 lines
1 KiB
Markdown
Raw Normal View History

2020-05-06 18:21:13 -04:00
## Testing and Tools
### Tests
Test `deno`:
```shell
2020-05-06 18:21:13 -04:00
# Run the whole suite:
cargo test
# Only test cli/tests/unit/:
2020-05-06 18:21:13 -04:00
cargo test js_unit_tests
```
Test `std/`:
```shell
2020-05-06 18:21:13 -04:00
cargo test std_tests
```
### Lint and format
Lint the code:
```shell
deno run -A --unstable ./tools/lint.js
2020-05-06 18:21:13 -04:00
```
Format the code:
```shell
deno run -A --unstable ./tools/format.js
2020-05-06 18:21:13 -04:00
```
### Continuous Benchmarks
See our benchmarks [over here](https://deno.land/benchmarks)
The benchmark chart supposes
2020-05-19 15:25:38 -04:00
https://github.com/denoland/benchmark_data/blob/gh-pages/data.json has the type
2020-05-06 18:21:13 -04:00
`BenchmarkData[]` where `BenchmarkData` is defined like the below:
```ts
interface ExecTimeData {
mean: number;
stddev: number;
user: number;
system: number;
min: number;
max: number;
}
interface BenchmarkData {
created_at: string;
sha1: string;
benchmark: {
[key: string]: ExecTimeData;
};
binarySizeData: {
[key: string]: number;
};
threadCountData: {
[key: string]: number;
};
syscallCountData: {
[key: string]: number;
};
}
```