Results of the testing investigation issued by
Jira Legacy | ||||||
---|---|---|---|---|---|---|
|
...
To run tests use yarn test command in the terminal in the project root folder. This command refers to the npm script in the package.json.
"test": "stripes test karma"
This command would produce the following output in the terminal:
...
To run tests with coverage change the command to look like below:
"test": "stripes test karma --coverage"
This would produce the additional output to the previous command in the terminal:
...
One of the main concepts of the BigTest is interactors. They are like wrappers of the components which allows to get information about component UI state (attribute, text, class). There are many helper methods to get information from the component which is stored in @bigtest/interactor package. For example in the code snippet below the attribute, is, hasClass are used to get information about UI state of the component. Particular interactor could contain as mach as needed of such helper fields. List of all interactors could found here. The source code is well documented with examples.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
import { interactor, is, attribute, hasClass } from '@bigtest/interactor'; import css from '../Button.css'; export default interactor(class ButtonInteractor { static defaultScope = `.${css.button}`; id = attribute('id'); href = attribute('href'); isAnchor = is('a'); isButton = is('button'); rendersDefault = hasClass(css.default); rendersPrimary = hasClass(css.primary); rendersBottomMargin0 = hasClass(css.marginBottom0) }); |
...