Merge pull request #33057 from backstage/rugvip/fix-test-api-provider-const

frontend-test-utils: fix `TestApiPair` type inference for tuple syntax
This commit is contained in:
Patrik Oldsberg
2026-02-28 10:45:26 +01:00
committed by GitHub
5 changed files with 103 additions and 2 deletions
@@ -0,0 +1,5 @@
---
'@backstage/frontend-test-utils': patch
---
Fixed type inference of `TestApiPair` when using tuple syntax by wrapping `MockWithApiFactory` in `NoInfer`.
+1
View File
@@ -0,0 +1 @@
Fixed a type inference issue with the `apis` option of testing utilities in `@backstage/frontend-test-utils`.
+1 -1
View File
@@ -443,7 +443,7 @@ export type RenderTestAppOptions<TApiPairs extends any[] = any[]> = {
// @public
export type TestApiPair<TApi> =
| readonly [ApiRef<TApi>, TApi extends infer TImpl ? Partial<TImpl> : never]
| MockWithApiFactory<TApi>;
| MockWithApiFactory<NoInfer<TApi>>;
// @public
export type TestApiPairs<TApiPairs> = {
@@ -0,0 +1,95 @@
/*
* Copyright 2020 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { createApiRef } from '@backstage/frontend-plugin-api';
import { TestApiProvider } from './TestApiProvider';
import { mockApis } from './mockApis';
import { render, screen } from '@testing-library/react';
const xApiRef = createApiRef<{ a: string; b: number }>({
id: 'x',
});
const yApiRef = createApiRef<string>({
id: 'y',
});
describe('TestApiProvider', () => {
it('should provide tuple APIs and check types', () => {
render(
<TestApiProvider
apis={[
[xApiRef, { a: 'a', b: 3 }],
[yApiRef, 'y'],
]}
>
<div />
</TestApiProvider>,
);
});
it('should allow partial API implementations', () => {
render(
<TestApiProvider apis={[[xApiRef, { a: 'a' }]]}>
<div />
</TestApiProvider>,
);
});
it('should reject mismatched types in tuple syntax', () => {
render(
// @ts-expect-error - a should be a string, not a number
<TestApiProvider apis={[[xApiRef, { a: 3 }]]}>
<div />
</TestApiProvider>,
);
});
it('should accept MockWithApiFactory entries', () => {
render(
<TestApiProvider apis={[mockApis.alert()]}>
<div />
</TestApiProvider>,
);
});
it('should accept a mix of tuples and MockWithApiFactory entries', () => {
render(
<TestApiProvider apis={[[xApiRef, { a: 'a' }], mockApis.alert()]}>
<div />
</TestApiProvider>,
);
});
it('should allow empty APIs', () => {
render(
<TestApiProvider apis={[]}>
<div />
</TestApiProvider>,
);
});
it('should provide APIs at runtime', async () => {
const alertApi = mockApis.alert();
render(
<TestApiProvider apis={[[xApiRef, { a: 'hello', b: 42 }], alertApi]}>
<span>rendered</span>
</TestApiProvider>,
);
expect(await screen.findByText('rendered')).toBeInTheDocument();
});
});
@@ -29,7 +29,7 @@ import {
*/
export type TestApiPair<TApi> =
| readonly [ApiRef<TApi>, TApi extends infer TImpl ? Partial<TImpl> : never]
| MockWithApiFactory<TApi>;
| MockWithApiFactory<NoInfer<TApi>>;
/**
* Represents an array of mock API implementation.