Skip to content

Commit d176cbd

Browse files
phryneasjerelmiller
authored andcommitted
fix up mixed release tag problem
1 parent ecf2294 commit d176cbd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.api-reports/api-report-testing_internal.api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,8 @@ export interface SimpleCaseData {
229229
type Spies<Keys extends ConsoleMethod[]> = Record<Keys[number], jest.SpyInstance<void, any[], any>>;
230230

231231
// Warning: (ae-forgotten-export) The symbol "Spies" needs to be exported by the entry point index.d.ts
232-
// Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "spyOnConsole" because one of its declarations is marked as @internal
233232
//
234-
// @internal (undocumented)
233+
// @public (undocumented)
235234
export function spyOnConsole<Keys extends ConsoleMethod[]>(...spyOn: Keys): Spies<Keys> & Disposable;
236235

237236
// @public (undocumented)

src/testing/internal/disposables/spyOnConsole.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ type Spies<Keys extends ConsoleMethod[]> = Record<
1010
jest.SpyInstance<void, any[], any>
1111
>;
1212

13-
/** @internal */
1413
export function spyOnConsole<Keys extends ConsoleMethod[]>(
1514
...spyOn: Keys
1615
): Spies<Keys> & Disposable {

0 commit comments

Comments
 (0)