Searched refs:devSession (Results 1 – 4 of 4) sorted by relevance
95 protected devSession: DevelopmentSession | null = null;240 this.devSession?.stopNotifying?.();241 this.devSession = new DevelopmentSession(256 this.devSession?.closeAsync().catch((error) => {262 await this.devSession.startAsync({301 await this.devSession?.closeAsync();
115 {devSessions.map((devSession, index, arr) => {119 <View key={devSession.url}>121 label={devSession.description}122 onPress={() => onPackagerPress(devSession)}
97 return this.devSession;173 const devSession = server.getNgrok(); constant177 expect(devSession?.startAsync).toHaveBeenCalled();185 expect(devSession?.stopAsync).toHaveBeenCalled();
77 const onDevSessionPress = async (devSession: DevSession) => {78 onLoadUrl(devSession.url);242 onDevSessionPress: (devSession: DevSession) => void;252 {devSessions.map((devSession) => {254 <View key={devSession.url}>256 onPress={() => onDevSessionPress(devSession)}265 {devSession.description}