init
assrt init scaffolds a new Assrt project in the current directory. It creates a config file, a tests directory, and an example test so you can verify your install before writing anything real.
Usage
bash
assrt init [options]What it creates
text
./assrt.config.yaml
./tests/example.yaml
./.gitignore # amended to ignore assrt-results/Options
| Field | Type | Description |
|---|---|---|
--project <name> | string | Project identifier written to the config file. |
--tests-dir <path> | string | Where tests will live. Defaults to ./tests. |
--force | boolean | Overwrite an existing config file instead of aborting. |