fix(core): Add missing primary key to execution annotation tags table (#11168)

This commit is contained in:
Eugene
2024-10-18 15:06:15 +02:00
committed by GitHub
parent 09954f6b32
commit b4b543d41d
7 changed files with 111 additions and 7 deletions

View File

@@ -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',
},
},