mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
000e76e3b4
This also gets rid of `Db.collection`, which was another source of circular dependencies.
35 lines
918 B
TypeScript
35 lines
918 B
TypeScript
import { Container } from 'typedi';
|
|
import { ExecutionMetadataRepository } from '@db/repositories/executionMetadata.repository';
|
|
import { ExecutionMetadataService } from '@/services/executionMetadata.service';
|
|
import { mockInstance } from '../shared/mocking';
|
|
|
|
describe('WorkflowExecuteAdditionalData', () => {
|
|
const repository = mockInstance(ExecutionMetadataRepository);
|
|
|
|
test('Execution metadata is saved in a batch', async () => {
|
|
const toSave = {
|
|
test1: 'value1',
|
|
test2: 'value2',
|
|
};
|
|
const executionId = '1234';
|
|
|
|
await Container.get(ExecutionMetadataService).save(executionId, toSave);
|
|
|
|
expect(repository.save).toHaveBeenCalledTimes(1);
|
|
expect(repository.save.mock.calls[0]).toEqual([
|
|
[
|
|
{
|
|
execution: { id: executionId },
|
|
key: 'test1',
|
|
value: 'value1',
|
|
},
|
|
{
|
|
execution: { id: executionId },
|
|
key: 'test2',
|
|
value: 'value2',
|
|
},
|
|
],
|
|
]);
|
|
});
|
|
});
|