Home
last modified time | relevance | path

Searched refs:isWebPlatformExcluded (Results 1 – 2 of 2) sorted by relevance

/expo/packages/@expo/cli/src/start/doctor/web/__tests__/
H A DWebSupportProjectPrerequisite-test.ts7 isWebPlatformExcluded,
37 describe(isWebPlatformExcluded, () => {
39 expect(isWebPlatformExcluded({ expo: { name: '', slug: '', platforms: ['android'] } })).toBe(
44 expect(isWebPlatformExcluded({ expo: { name: '', slug: '', platforms: [] } })).toBe(false);
48 isWebPlatformExcluded({ expo: { name: '', slug: '', platforms: ['android', 'web'] } })
52 expect(isWebPlatformExcluded({ expo: { name: '', slug: '' } })).toBe(false);
/expo/packages/@expo/cli/src/start/doctor/web/
H A DWebSupportProjectPrerequisite.ts40 if (isWebPlatformExcluded(config.rootConfig)) {
93 export function isWebPlatformExcluded(rootConfig: AppJSONConfig): boolean { function