fix(web): drop invalid type-arg on toMatchObject in client tests

vitest's toMatchObject doesn't accept a type parameter; tests passed
under vitest (esbuild transpile) but svelte-check rejected. Plan-spec
bug introduced in 4d1a7f8; fixing here so check is clean before Task 6.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-04-22 17:26:15 -04:00
parent 4591618e7b
commit 8a6a496c67
+3 -3
View File
@@ -1,5 +1,5 @@
import { afterEach, describe, expect, test, vi } from 'vitest';
import { api, apiFetch, type ApiError } from './client';
import { api, apiFetch } from './client';
afterEach(() => {
vi.unstubAllGlobals();
@@ -37,7 +37,7 @@ describe('apiFetch', () => {
test('throws ApiError from error envelope on 4xx', async () => {
stubFetch(404, { error: { code: 'not_found', message: 'track not found' } });
await expect(apiFetch('/api/tracks/x')).rejects.toMatchObject<ApiError>({
await expect(apiFetch('/api/tracks/x')).rejects.toMatchObject({
code: 'not_found',
message: 'track not found',
status: 404
@@ -48,7 +48,7 @@ describe('apiFetch', () => {
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(
new Response('<html>500</html>', { status: 500, statusText: 'Internal Server Error' })
));
await expect(apiFetch('/api/ping')).rejects.toMatchObject<ApiError>({
await expect(apiFetch('/api/ping')).rejects.toMatchObject({
code: 'unknown',
message: 'Internal Server Error',
status: 500