mirror of
https://github.com/c-cube/linol.git
synced 2025-12-07 19:55:44 -05:00
13 lines
197 B
TypeScript
13 lines
197 B
TypeScript
import { toEqualUri } from "./src/LanguageServer";
|
|
|
|
expect.extend({
|
|
toEqualUri,
|
|
});
|
|
|
|
declare global {
|
|
namespace jest {
|
|
interface Matchers<R> {
|
|
toEqualUri(uri: string): R;
|
|
}
|
|
}
|
|
}
|