react-native-navigation的迁移库

app.test.js.orig 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. describe('app', () => {
  2. beforeEach((done) => {
  3. global.simulator.relaunchApp(done);
  4. });
  5. it('shows welcome screen', () => {
  6. expect(elementByLabel('React Native Navigation!')).toBeVisible();
  7. });
  8. it('switch to tab based app, passProps and functions', () => {
  9. elementByLabel('Switch to tab based app').tap();
  10. expect(elementByLabel('This is tab 1')).toBeVisible();
  11. expect(elementByLabel('Hello from a function!')).toBeVisible();
  12. });
  13. it('push screen', () => {
  14. elementByLabel('Push').tap();
  15. expect(elementByLabel('Pushed screen')).toBeVisible();
  16. });
  17. it('switch to tabs with side menus', () => {
  18. elementByLabel('Switch to app with side menus').tap();
  19. elementByLabel('This is a side menu center screen').swipe('right');
  20. expect(elementByLabel('This is a side menu screen')).toBeVisible();
  21. });
  22. it('screen lifecycle', () => {
  23. elementByLabel('Switch to lifecycle screen').tap();
  24. expect(elementByLabel('onStart!')).toBeVisible();
  25. elementByLabel('Push to test onStop').tap();
  26. expect(elementByLabel('Alert')).toBeVisible();
  27. expect(elementByLabel('onStop!')).toBeVisible();
  28. });
  29. it('pop screen', () => {
  30. elementByLabel('Push').tap();
  31. expect(elementByLabel('Pushed screen')).toBeVisible();
  32. elementByLabel('Pop').tap();
  33. expect(elementByLabel('React Native Navigation!')).toBeVisible();
  34. });
  35. <<<<<<< HEAD
  36. });
  37. describe('reload app', () => {
  38. before(function (done) {
  39. simulator.reloadReactNativeApp(done);
  40. });
  41. it('shows welcome screen', () => {
  42. expect(elementByLabel('React Native Navigation!')).toBeVisible();
  43. =======
  44. xit('show modal', () => {
  45. elementByLabel('Show Modal').tap();
  46. expect(elementByLabel('Modal screen')).toBeVisible();
  47. >>>>>>> 886672b24c98bd44fe235b9f4a5084da85b45d8d
  48. });
  49. });
  50. function elementByLabel(label) {
  51. return element(by.label(label));
  52. }