mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This moves the `FakeNavigation` implementation to the primitives folder so its implementation can be shared with Wiz. This class was initially copied directly from the Wiz implementation, with some small modifications. There will still need to be some work done to align the implementations and fix anything internally that needs adjusting. PR Close #59857
19 lines
479 B
TypeScript
19 lines
479 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
/// <reference types="jasmine" />
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point for all public APIs of this package.
|
|
*/
|
|
export * from './src/testing';
|
|
export * from './src/testing_private_export';
|
|
|
|
// This file only reexports content of the `src` folder. Keep it that way.
|