mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-04 10:39:23 +02:00
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
/**
|
|
* Jest globalSetup hook: extract committed zips into the expected on-disk
|
|
* layout before any test runs. We can't rely on npm/pnpm's pretest hook here
|
|
* because CI invokes `test:unit` (turbo task), not `test`.
|
|
*/
|
|
import { extractAllWorkflows } from './extract-workflows';
|
|
|
|
module.exports = () => {
|
|
extractAllWorkflows();
|
|
};
|