1export class DevelopmentSession {
2  constructor(
3    public projectRoot: string,
4    public url: string
5  ) {}
6
7  startAsync = jest.fn(async () => ({}));
8  stopNotifying = jest.fn();
9  closeAsync = jest.fn(async () => ({}));
10}
11