kin: auto-commit after pipeline

This commit is contained in:
Gros Frumos 2026-03-17 18:24:41 +02:00
parent e118b87a3e
commit 6ffe4ffb9f
2 changed files with 42 additions and 4 deletions

View file

@ -547,12 +547,12 @@ describe('ProjectView — Links таб', () => {
const fromInput = disabledInputs.find(i => (i.element as HTMLInputElement).value === 'KIN')
expect(fromInput).toBeDefined()
// to_project и link_type — select элементы
// to_project и type — select элементы
const selects = wrapper.findAll('select')
expect(selects.length).toBeGreaterThanOrEqual(1)
})
it('форма link_type select содержит depends_on, triggers, related_to', async () => {
it('форма type select содержит depends_on, triggers, related_to', async () => {
const wrapper = await mountProjectView()
await switchToLinksTab(wrapper)
const plusBtn = wrapper.findAll('button').find(b => b.text().includes('+') && b.text().includes('Link'))
@ -605,7 +605,7 @@ describe('ProjectView — Links таб', () => {
it('Delete вызывает api.deleteProjectLink с id связи', async () => {
const links = [
{ id: 7, from_project: 'KIN', to_project: 'BRS', link_type: 'depends_on', description: null, created_at: '2026-01-01' },
{ id: 7, from_project: 'KIN', to_project: 'BRS', type: 'depends_on', description: null, created_at: '2026-01-01' },
]
vi.mocked(api.projectLinks).mockResolvedValue(links as any)
vi.spyOn(window, 'confirm').mockReturnValue(true)