Skip to main content
Version: 7.5.5

Build

This option, available in the test maker configuration file, allows you to parametrize your source code build. You have three main categories of parameters that can be set.

Options

NameTypeDescription
cleanUpobjectWith each build, you can delete the content of some folders.
compilerobjectYou can set some compiling options.
outputobjectYou can set some compiling options.

cleanUp

With each build, you can delete the content of some folders.

Options

NameTypeDescription
reportsbooleanYou can choose to have your reports folder to be emptied on each build.
testsbooleanYou can choose to have your tests folder, which contains the compiled version of your code, to be emptied on each build.

compiler

You can set some compiling options.

Options

NameTypeDescription
compileOnlybooleanAllows you to proceeds to a compilation of your tests without the test execution.
failOnErrorbooleanYour test compilation shall fail if any error is present inside your code.
failOnWarningbooleanYour test compilation shall fail if any warning is present inside your code.
typescriptobjectYou can set your typescript options.

typescript

You can choose whether to enable the typechecking during your compilation.

NameTypeDescription
typeCheckbooleanIf set as false, your test compilation shall fail if any error occurs in the process of verifying and enforcing constraints of types in values.
            typescript: {
typeCheck: true
}

output

You can act on the folder with the output following a compilation.

Options

NameTypeDescription
pathstringYou can change the path of the generated folder that will contain your compiled code and your reports folder.