react-native-navigation的迁移库

androidLifecycle.test.js 494B

123456789101112131415161718192021222324252627282930
  1. xdescribe('android application lifecycle', () => {
  2. it('normal launch', () => {
  3. //
  4. });
  5. it('launch already running in background', () => {
  6. //
  7. });
  8. it('launch after activity killed by system', () => {
  9. //
  10. });
  11. it('launch and ask react overlay permissions', () => {
  12. //
  13. });
  14. it('launch after reactContext killed by system', () => {
  15. //
  16. });
  17. it('launch from push notification', () => {
  18. //
  19. });
  20. it('launch from intent filter', () => {
  21. //
  22. });
  23. });