18d307f52SEvan Baconexport class DevelopmentSession {
2*8a424bebSJames Ide  constructor(
3*8a424bebSJames Ide    public projectRoot: string,
4*8a424bebSJames Ide    public url: string
5*8a424bebSJames Ide  ) {}
68d307f52SEvan Bacon
78d307f52SEvan Bacon  startAsync = jest.fn(async () => ({}));
8edc92349SJuwan Wheatley  stopNotifying = jest.fn();
9edc92349SJuwan Wheatley  closeAsync = jest.fn(async () => ({}));
108d307f52SEvan Bacon}
11