Testing

We are currently using Jest as the main testing framework. Check out this recipe to learn how to add your favorite testing framework.

For custom configuration, use the jest key within your main package.json. We are currently supporting the following keys:

'collectCoverageFrom',
	'coverageReporters',
	'coverageThreshold',
	'resetMocks',
	'resetModules',
	'snapshotSerializers',
	'watchPathIgnorePatterns';

Note: If you need the setupTestFrameworkScriptFile configuration option, just create a testsSetup.js file inside your root folder.

See jest configuration options here.