Home
last modified time | relevance | path

Searched refs:devSession (Results 1 – 4 of 4) sorted by relevance

/expo/packages/@expo/cli/src/start/server/
H A DBundlerDevServer.ts95 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();
/expo/packages/expo-dev-launcher/bundle/components/
H A DDeepLinkModal.tsx115 {devSessions.map((devSession, index, arr) => {
119 <View key={devSession.url}>
121 label={devSession.description}
122 onPress={() => onPackagerPress(devSession)}
/expo/packages/@expo/cli/src/start/server/__tests__/
H A DBundlerDevServer-test.ts97 return this.devSession;
173 const devSession = server.getNgrok(); constant
177 expect(devSession?.startAsync).toHaveBeenCalled();
185 expect(devSession?.stopAsync).toHaveBeenCalled();
/expo/packages/expo-dev-launcher/bundle/screens/
H A DHomeScreen.tsx77 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}