๐Ÿ“ฆ n8n-io / nodelinter

๐Ÿ“„ jest.config.js ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11module.exports = {
	rootDir: ".",
	testMatch: ["<rootDir>/src/tests/*.test.ts"],
	transform: {
		"^.+\\.ts$": "ts-jest"
	},
	testEnvironment: "node",
	verbose: true,
	// silent: true,
	maxWorkers: 1
};