This guide details Carbon's testing setup, common conventions and utilities available to you.
We use the Jest framework and Enzyme library for our component tests. Tests should describe the behaviour of the components rather than describe the implementation to keep the tests clean and reliable. All props, branches and paths and each of their conditions need to be tested to meet Carbon's 100% coverage policy.
To help with common testing scenarios, we have a number of custom utilities available in /src/__spec_helper__
that can be imported directly into your tests.
For example the assertStyleMatch
method which asserts if all the expected CSS properties have been applied to a DOM element or React component:
describe("FlatTableRow", () => {
it("then the element should have proper outline when focused", () => {
assertStyleMatch(
{
outline: `3px solid var(--colorsSemanticFocus500)`,
},
wrapper,
{
modifier: ":focus",
}
);
});
});
Snapshots are left up to the developer to be used where there is value. If you do want to use them, ensure they are small, focused and effective.
Further information on snapshots can be found on Jest's offical docs.
GitHub Actions runs unit tests for a Pull Request on creation and every commit push. You can manually run these steps with:
npm format
- run prettier to format code under/src
.npm run lint
- run linter on code under/src
.npm run type-check
- run TypeScript compiler to check for type errors.npm test
- runs unit tests.
We use the Cypress framework to test component behaviour that requires a browser environment. Functionality which has already been tested via Jest tests does need to be tested again using Cypress, unless it would be benefitical to test the behaviour in a manner similar to how a user would in a browser.
Further details on installing Cypress and our configuration for it can be found in our Getting started with Cypress guide.
NOTE: As of November 2022, we are refactoring our older Cypress tests using Cucumber in favour of JavaScript. For information about our old style tests, see our legacy E2E Cypress tests guide.
All Cypress tests must go within *.test.js
for the relevant component.
.
├── cypress/
│ │
│ ├── locators/
│ │ └── [component-name]/
│ │ ├── index.js
│ │ └── locators.js
│ │
│ ├── support/
│ │
│ ├── docker-compose.yml
│ ├── webpack.config.js
│ ├── tsconfig.json
│ └── README.md
│
├── src/components/
│ └── [component-name]/
│ └── [component-name].test.js
│
├── .eslintrc
├── cypress.config.js
└── tsconfig.json
A typical *.test.js
file may look like the following:
// inside src/components/button/button.test.js...
import Button from "./button.component";
import CypressMountWithProviders from "../../../cypress/support/component-helper/cypress-mount";
import { buttonDataComponent } from "../../../cypress/locators/button";
context("Test Button component", () => {
describe("Check props for Button component", () => {
it("should render Button label when passed to the component", () => {
const label = "foobar";
CypressMountWithProviders(<Button>{label}</Button>);
buttonDataComponent().should("have.text", label);
});
});
});
Where CypressMountWithProviders
renders the component in the simulated browser and buttonDataComponent
is a locator that returns the DOM element we want to test.
We write dedicated functions to access rendered DOM elements in order to make our tests easier to read. Locators for a component typically follow this structure:
/* in index.js */
import { BUTTON_COMPONENT, BUTTON_SUBTEXT } from "./locators.js";
export const buttonComponent = () => cy.get(BUTTON_DATA_COMPONENT);
export const buttonSubtext = () => cy.get(BUTTON_SUBTEXT);
/* in locators.js */
// `data-component` prop is typically reserved for the root element of the component. Whereas `data-element` is for specific elements.
export const BUTTON_COMPONENT = '[data-component="button"]';
export const BUTTON_SUBTEXT = '[data-element="subtext"]';
We use Chromatic for flagging any visual regressions introduced into our Storybook stories. When CI checks are run on a pull request, Chromatic automatically generates a snapshot for each story and compares the snapshots with their baseline counterparts.
Chromatic is set-up to check for regressions in all component stories. Typically components will have the following stories files:
.
└─ src/components/
└── [component-name]/
├── [component-name].stories.* (stories used in carbon docs)
└── [component-name]-test.stories.* (private stories)
To introduce a new visual test, create a story in the relevant stories file that demonstrates the behaviour and it will automatically be detected by Chromatic.