mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 18:27:09 +02:00
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
/** @type {import('jest').Config} */
|
|
const baseConfig = require('../../../jest.config');
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
// Watchman is not available in some sandboxed environments (and is optional for Jest).
|
|
watchman: false,
|
|
};
|