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