The Ivy Language Service codebase testing suite contains a few testing utilities which allow for assertions of Language Service operations against an in-memory project. However, this existing utility lacks the flexibility to test more complex scenarios, such as those involving multiple TS projects with dependencies between them. This commit introduces a new 'testing' package for the Ivy LS which attempts to more faithfully represent the possible states of an IDE, and allows for testing of more advanced scenarios. The new utility borrows from the prior version and is geared towards more ergonomic testing. Only basic functionality is present in this initial implementation, but this will grow over time. PR Close #40679
13 lines
319 B
TypeScript
13 lines
319 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.io/license
|
|
*/
|
|
|
|
export * from './src/buffer';
|
|
export * from './src/env';
|
|
export * from './src/project';
|
|
export * from './src/util';
|