mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Add missing primary key to execution annotation tags table (#11168)
This commit is contained in:
@@ -563,10 +563,10 @@ describe('ExecutionService', () => {
|
||||
{
|
||||
...summaryShape,
|
||||
annotation: {
|
||||
tags: [
|
||||
tags: expect.arrayContaining([
|
||||
expect.objectContaining({ name: 'tag1' }),
|
||||
expect.objectContaining({ name: 'tag2' }),
|
||||
],
|
||||
]),
|
||||
vote: 'up',
|
||||
},
|
||||
},
|
||||
@@ -646,10 +646,10 @@ describe('ExecutionService', () => {
|
||||
{
|
||||
...summaryShape,
|
||||
annotation: {
|
||||
tags: [
|
||||
tags: expect.arrayContaining([
|
||||
expect.objectContaining({ name: 'tag1' }),
|
||||
expect.objectContaining({ name: 'tag2' }),
|
||||
],
|
||||
]),
|
||||
vote: 'up',
|
||||
},
|
||||
},
|
||||
@@ -691,10 +691,10 @@ describe('ExecutionService', () => {
|
||||
{
|
||||
...summaryShape,
|
||||
annotation: {
|
||||
tags: [
|
||||
tags: expect.arrayContaining([
|
||||
expect.objectContaining({ name: 'tag1' }),
|
||||
expect.objectContaining({ name: 'tag2' }),
|
||||
],
|
||||
]),
|
||||
vote: 'up',
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user