Skip to content
Snippets Groups Projects
.mocharc.base.json 267 B
{
	"ui": "bdd",
	"reporter": "spec",
	"extension": ["js", "ts", "tsx"],
	"require": [
		"@babel/register",
		"regenerator-runtime/runtime",
		"ts-node/register",
		"./tests/setup/chaiPlugins.ts"
	],
	"watch-files": [
		"./**/*.js",
		"./**/*.ts",
		"./**/*.tsx"
	]
}