expo-splash-screen
Version:
Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.
24 lines (21 loc) • 545 B
text/typescript
import { buildContentsJsonImages } from '../withIosSplashAssets';
describe(buildContentsJsonImages, () => {
it(`supports dark mode`, () => {
expect(
buildContentsJsonImages({
image: 'somn',
darkImage: 'other',
tabletImage: undefined,
darkTabletImage: undefined,
}).length
).toBe(6);
expect(
buildContentsJsonImages({
image: 'somn',
darkImage: undefined,
tabletImage: undefined,
darkTabletImage: undefined,
}).length
).toBe(3);
});
});