mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-02 01:37:07 +02:00
9 lines
294 B
TypeScript
9 lines
294 B
TypeScript
import { runCommand } from '@oclif/test';
|
|
|
|
describe('n8n-node create', () => {
|
|
it('should print correct output', async () => {
|
|
const { stdout } = await runCommand('create -f', { root: import.meta.dirname });
|
|
expect(stdout).toEqual('hello from commands/create.ts (force=true)\n');
|
|
});
|
|
});
|