Configuration file
Concordia Compiler can use a configuration file in JSON format named .concordiarc
. You can generate it by running the following command:
You'll be asked about the desired configuration and then the file will be saved.
Example:
Configuration file's properties are similar to CLI parameters. The example above defines: "pt"
(meaning "Portuguese") as the default language; the directory "docs/features"
for features and test cases; the plug-in "codeceptjs-testcafe"
for generating test scripts; the directory "test/e2e"
for test scripts; and the directory "test/e2e/output"
for output files such as report files and screenshots.
CLI options take precedence over values from the configuration file
File-related options
directory
directory
Directory to search for .feature
and .testcase
files.
Example:
recursive
recursive
Use recursive directory search.
Example:
files
files
Files to consider, instead of considering directory
. The files must be separated by colon.
Example:
Another example:
We recommend you to configure the property directory
whether your project can have new files.
ignore
ignore
Files to ignore, considering the parameter directory
. The files must be separated by colon. Example:
extensions
extensions
To-Do
encoding
encoding
File encoding of the files. Accepted values are:
utf8
orutf-8
latin1
ascii
ucs2
orucs-2
utf16le
orutf-16le
Naturally, the files must be edited with the given file encoding.
Language-related options
To-Do
Plug-in related options
To-Do
Processing-related options
To-Do
Generation-related options
To-Do
Strategy-related options
To-Do
Last updated