test(10-08): promote admin skeleton stubs to real RED tests — 8 failing tests

- AdminAuditView.skeleton.test.js: 5 real assertions (skeleton rows, cell count, no loading text, EmptyState, CTA)
- AdminUsersView.skeleton.test.js: 3 real assertions (skeleton rows, 6 cells, no loading text)
- All 8 tests fail until Task 2 updates the view components
This commit is contained in:
curo1305
2026-06-15 20:22:34 +02:00
parent a1885122a1
commit ec5fd23ec2
2 changed files with 138 additions and 10 deletions
@@ -1,7 +1,60 @@
import { describe, it } from 'vitest'
import { describe, it, expect, vi, beforeEach } from 'vitest'
import { mount } from '@vue/test-utils'
import { setActivePinia, createPinia } from 'pinia'
vi.mock('../../../api/client.js', () => ({
adminListUsers: vi.fn().mockResolvedValue({ items: [] }),
adminCreateUser: vi.fn().mockResolvedValue({}),
adminDeactivateUser: vi.fn().mockResolvedValue({}),
adminReactivateUser: vi.fn().mockResolvedValue({}),
adminDeleteUser: vi.fn().mockResolvedValue({}),
adminResetUserPassword: vi.fn().mockResolvedValue({}),
}))
const stubs = {
BreadcrumbBar: true,
EmptyState: true,
AppIcon: true,
}
async function mountUsers(overrides = {}) {
const { default: AdminUsersView } = await import('../AdminUsersView.vue')
return mount(AdminUsersView, {
global: { stubs, plugins: [createPinia()] },
...overrides,
})
}
describe('UX-04: AdminUsersView shows skeleton table rows during loading', () => {
it.todo('renders 5+ skeleton <tr> rows when loading=true')
it.todo('skeleton rows have 6 columns matching the real table header')
it.todo('animated spinner Loading users… text is removed')
beforeEach(() => {
setActivePinia(createPinia())
vi.resetModules()
})
it('renders 5 skeleton <tr> rows when loading=true', async () => {
const { adminListUsers } = await import('../../../api/client.js')
adminListUsers.mockReturnValue(new Promise(() => {})) // never resolves => loading stays true
const wrapper = await mountUsers()
const tbody = wrapper.find('tbody')
expect(tbody.exists()).toBe(true)
const rows = tbody.findAll('tr')
expect(rows.length).toBeGreaterThanOrEqual(5)
})
it('skeleton rows have exactly 6 <td> cells', async () => {
const { adminListUsers } = await import('../../../api/client.js')
adminListUsers.mockReturnValue(new Promise(() => {}))
const wrapper = await mountUsers()
const rows = wrapper.find('tbody').findAll('tr')
rows.forEach(row => {
expect(row.findAll('td').length).toBe(6)
})
})
it('Loading users text is absent when loading=true', async () => {
const { adminListUsers } = await import('../../../api/client.js')
adminListUsers.mockReturnValue(new Promise(() => {}))
const wrapper = await mountUsers()
expect(wrapper.text()).not.toContain('Loading users')
})
})