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