diff --git a/react/ActionMenu/index.spec.jsx b/react/ActionMenu/index.spec.jsx index 84ac258c90..9c43e71a08 100644 --- a/react/ActionMenu/index.spec.jsx +++ b/react/ActionMenu/index.spec.jsx @@ -1,12 +1,36 @@ import React from 'react' import { mount } from 'enzyme' - +import { act } from 'react-dom/test-utils' import ActionMenu, { ActionMenuItem } from './' import { fixPopperTesting } from '../Popper/testing' describe('ActionMenu', () => { fixPopperTesting() + // The update-not-wrapping-in-act warning is disabled for ActionMenuWrapper since + // we have not found how to remove the "update" happening when mounting the + // ActionMenu. + let originalConsoleError = console.error + + beforeEach(() => { + // eslint-disable-next-line no-console + console.error = function(msg, arg) { + if ( + msg.includes('An update to %s inside a test was not wrapped in act') && + arg == 'ActionMenuWrapper' + ) { + return + } else { + return originalConsoleError.apply(this, arguments) + } + } + }) + + afterEach(() => { + // eslint-disable-next-line no-console + console.error = originalConsoleError + }) + it('should support null children', () => { const comp = mount( @@ -40,16 +64,21 @@ describe('ActionMenu', () => { ) - comp - .find(ActionMenuItem) - .at(1) - .simulate('click') + act(() => { + comp + .find(ActionMenuItem) + .at(1) + .simulate('click') + }) expect(menuAction2).toHaveBeenCalled() expect(closeMenu).not.toHaveBeenCalled() - comp - .find(ActionMenuItem) - .at(0) - .simulate('click') + + act(() => { + comp + .find(ActionMenuItem) + .at(0) + .simulate('click') + }) expect(menuAction1).toHaveBeenCalled() expect(closeMenu).toHaveBeenCalled() }) diff --git a/react/Badge/index.jsx b/react/Badge/index.jsx index 218d3a101a..c02af0dcb8 100644 --- a/react/Badge/index.jsx +++ b/react/Badge/index.jsx @@ -114,12 +114,12 @@ const Badge = withStyles(customStyles)( Badge.propTypes = { anchorOrigin: PropTypes.shape({ - horizontal: PropTypes.oneOf('left', 'right'), - vertical: PropTypes.oneOf('bottom', 'top') + horizontal: PropTypes.oneOf(['left', 'right']), + vertical: PropTypes.oneOf(['bottom', 'top']) }), - size: PropTypes.oneOf('small', 'medium', 'large'), + size: PropTypes.oneOf(['small', 'medium', 'large']), showZero: PropTypes.bool, - variant: PropTypes.oneOf('standard', 'dot') + variant: PropTypes.oneOf(['standard', 'dot']) } Badge.defaultProps = { diff --git a/react/ContactsList/ContactsList.jsx b/react/ContactsList/ContactsList.jsx index dcbaf8f0f6..625a478874 100644 --- a/react/ContactsList/ContactsList.jsx +++ b/react/ContactsList/ContactsList.jsx @@ -18,8 +18,8 @@ const ContactsList = props => {
    {sortedHeaders.map(header => (
  1. - {header}
      + {header} {categorizedContacts[header].map(contact => (
    1. { useEventListener(document, 'resume', apps.fetch) + if (apps.fetchStatus === 'loading') { + return null + } + return ( { _type: 'io.cozy.apps', attributes: { slug: 'contacts' + }, + links: { + related: 'http://contacts.cozy.tools:8080/' } } ] diff --git a/react/Viewer/TextViewer.spec.jsx b/react/Viewer/TextViewer.spec.jsx index 18c032a7bf..c2b691bea3 100644 --- a/react/Viewer/TextViewer.spec.jsx +++ b/react/Viewer/TextViewer.spec.jsx @@ -3,8 +3,17 @@ import { shallow } from 'enzyme' import { TextViewer, isMarkdown } from './TextViewer' import { createMockClient } from 'cozy-client' import renderer from 'react-test-renderer' + +const client = createMockClient({}) + +const mockFetch = responseText => async () => ({ + text: async () => responseText +}) + +client.stackClient.fetch = mockFetch('Text') + const props = { - client: createMockClient({}), + client, url: 'https://foo.mycozy.cloud', file: { _id: '1', diff --git a/react/__snapshots__/examples.spec.jsx.snap b/react/__snapshots__/examples.spec.jsx.snap index 6b307334ed..6f5783a22c 100644 --- a/react/__snapshots__/examples.spec.jsx.snap +++ b/react/__snapshots__/examples.spec.jsx.snap @@ -434,797 +434,797 @@ exports[`ContactsList should render examples: ContactsList 1`] = `
      1. -
      2. EMPTY
      3. -
          -
        1. -
          -
          -
          I
          -
           
          -
          -
          isabelle.durand@cozycloud.cc
          -
          -
          -
          -
        2. -
        +
          +
        1. EMPTY
        2. +
        3. +
          +
          +
          I
          +
           
          +
          +
          isabelle.durand@cozycloud.cc
          +
          +
          +
          +
        4. +
      4. -
      5. A
      6. -
          -
        1. -
          -
          -
          A
          -
          Alexis Bickers 
          -
          -
          alexis.bickers@logico.club
          -
          +33 (9)7 58 16 92 55
          -
          -
          -
        2. -
        +
          +
        1. A
        2. +
        3. +
          +
          +
          A
          +
          Alexis Bickers 
          +
          +
          alexis.bickers@logico.club
          +
          +33 (9)7 58 16 92 55
          +
          +
          +
        4. +
      7. -
      8. B
      9. -
          -
        1. -
          -
          -
          B
          -
          Baramax 
          -
          -
          tyler.rhymer@baramax.eu
          -
          +33 (3)2 38 88 00 99
          -
          -
          -
        2. -
        3. -
          -
          -
          JB
          -
          Jenette Bourne
          -
          -
          jenette.bourne@dynaair.mobi
          -
          +33 (0)8 05 76 45 70
          -
          -
          -
        4. -
        5. -
          -
          -
          RB
          -
          Raylene Bourne
          -
          -
          raylene.bourne@tecomix.name
          -
          +33 (3)5 71 20 15 93
          -
          -
          -
        6. -
        7. -
          -
          -
          RB
          -
          Rico Bourne
          -
          -
          rico.bourne@citisys.org
          -
          +33 (1)4 84 34 52 44
          -
          -
          -
        8. -
        9. -
          -
          -
          RB
          -
          Rosanne Bourne
          -
          -
          rosanne.bourne@creatonix.xyz
          -
          +33 (1)3 93 75 09 69
          -
          -
          -
        10. -
        11. -
          -
          -
          KB
          -
          Katelin Bourquin
          -
          -
          katelin.bourquin@unilogic.biz
          -
          +33 (9)3 52 45 98 35
          -
          -
          -
        12. -
        13. -
          -
          -
          SB
          -
          Shea Brier
          -
          -
          shea.brier@logico.club
          -
          +33 (0)8 43 39 94 21
          -
          -
          -
        14. -
        15. -
          -
          -
          AB
          -
          Aiden Bryd
          -
          -
          aiden.bryd@citisys.info
          -
          +33 (1)4 80 11 59 28
          -
          -
          -
        16. -
        +
          +
        1. B
        2. +
        3. +
          +
          +
          B
          +
          Baramax 
          +
          +
          tyler.rhymer@baramax.eu
          +
          +33 (3)2 38 88 00 99
          +
          +
          +
        4. +
        5. +
          +
          +
          JB
          +
          Jenette Bourne
          +
          +
          jenette.bourne@dynaair.mobi
          +
          +33 (0)8 05 76 45 70
          +
          +
          +
        6. +
        7. +
          +
          +
          RB
          +
          Raylene Bourne
          +
          +
          raylene.bourne@tecomix.name
          +
          +33 (3)5 71 20 15 93
          +
          +
          +
        8. +
        9. +
          +
          +
          RB
          +
          Rico Bourne
          +
          +
          rico.bourne@citisys.org
          +
          +33 (1)4 84 34 52 44
          +
          +
          +
        10. +
        11. +
          +
          +
          RB
          +
          Rosanne Bourne
          +
          +
          rosanne.bourne@creatonix.xyz
          +
          +33 (1)3 93 75 09 69
          +
          +
          +
        12. +
        13. +
          +
          +
          KB
          +
          Katelin Bourquin
          +
          +
          katelin.bourquin@unilogic.biz
          +
          +33 (9)3 52 45 98 35
          +
          +
          +
        14. +
        15. +
          +
          +
          SB
          +
          Shea Brier
          +
          +
          shea.brier@logico.club
          +
          +33 (0)8 43 39 94 21
          +
          +
          +
        16. +
        17. +
          +
          +
          AB
          +
          Aiden Bryd
          +
          +
          aiden.bryd@citisys.info
          +
          +33 (1)4 80 11 59 28
          +
          +
          +
        18. +
      10. -
      11. C
      12. -
          -
        1. -
          -
          -
          LC
          -
          Lorelei Cadena
          -
          -
          lorelei.cadena@dalserve.club
          -
          +33 (4)4 72 27 49 64
          -
          -
          -
        2. -
        3. -
          -
          -
          RC
          -
          Raisa Cappel
          -
          -
          raisa.cappel@zatheon.eu
          -
          +33 (2)3 69 80 63 05
          -
          -
          -
        4. -
        5. -
          -
          -
          RC
          -
          Rosanne Chapman
          -
          -
          rosanne.chapman@peersys.gov
          -
          +33 (8)1 50 82 04 53
          -
          -
          -
        6. -
        7. -
          -
          -
          C
          -
          CoreMax 
          -
          -
          grace.muldoon@coremax.xyz
          -
          +33 (8)1 17 99 91 53
          -
          -
          -
        8. -
        +
          +
        1. C
        2. +
        3. +
          +
          +
          LC
          +
          Lorelei Cadena
          +
          +
          lorelei.cadena@dalserve.club
          +
          +33 (4)4 72 27 49 64
          +
          +
          +
        4. +
        5. +
          +
          +
          RC
          +
          Raisa Cappel
          +
          +
          raisa.cappel@zatheon.eu
          +
          +33 (2)3 69 80 63 05
          +
          +
          +
        6. +
        7. +
          +
          +
          RC
          +
          Rosanne Chapman
          +
          +
          rosanne.chapman@peersys.gov
          +
          +33 (8)1 50 82 04 53
          +
          +
          +
        8. +
        9. +
          +
          +
          C
          +
          CoreMax 
          +
          +
          grace.muldoon@coremax.xyz
          +
          +33 (8)1 17 99 91 53
          +
          +
          +
        10. +
      13. -
      14. F
      15. -
          -
        1. -
          -
          -
          FF
          -
          Francis Flinn
          -
          -
          francis.flinn@fortyfour.xyz
          -
          +33 (2)1 24 07 51 43
          -
          -
          -
        2. -
        3. -
          -
          -
          VF
          -
          Vaughn Friedrich
          -
          -
          vaughn.friedrich@seelogic.co
          -
          +33 (1)8 68 41 49 83
          -
          -
          -
        4. -
        +
          +
        1. F
        2. +
        3. +
          +
          +
          FF
          +
          Francis Flinn
          +
          +
          francis.flinn@fortyfour.xyz
          +
          +33 (2)1 24 07 51 43
          +
          +
          +
        4. +
        5. +
          +
          +
          VF
          +
          Vaughn Friedrich
          +
          +
          vaughn.friedrich@seelogic.co
          +
          +33 (1)8 68 41 49 83
          +
          +
          +
        6. +
      16. -
      17. G
      18. -
          -
        1. -
          -
          -
          KG
          -
          Kurt Goudy
          -
          -
          kurt.goudy@amsquare.edu
          -
          +33 (6)3 54 74 20 62
          -
          -
          -
        2. -
        +
          +
        1. G
        2. +
        3. +
          +
          +
          KG
          +
          Kurt Goudy
          +
          +
          kurt.goudy@amsquare.edu
          +
          +33 (6)3 54 74 20 62
          +
          +
          +
        4. +
      19. -
      20. H
      21. -
          -
        1. -
          -
          -
          MH
          -
          Max Higgins
          -
          -
          max.higgins@maxcast.com
          -
          +33 (4)5 39 48 09 09
          -
          -
          -
        2. -
        3. -
          -
          -
          H
          -
          Hivemind 
          -
          -
          neida.backer@hivemind.biz
          -
          +33 (1)6 74 60 61 23
          -
          -
          -
        4. -
        5. -
          -
          -
          LH
          -
          Lyn Hollis
          -
          -
          lyn.hollis@citisys.biz
          -
          +33 (8)8 32 79 16 61
          -
          -
          -
        6. -
        7. -
          -
          -
          EH
          -
          Eleanore Hottle
          -
          -
          eleanore.hottle@tomiatech.edu
          -
          +33 (3)6 44 88 19 04
          -
          -
          -
        8. -
        +
          +
        1. H
        2. +
        3. +
          +
          +
          MH
          +
          Max Higgins
          +
          +
          max.higgins@maxcast.com
          +
          +33 (4)5 39 48 09 09
          +
          +
          +
        4. +
        5. +
          +
          +
          H
          +
          Hivemind 
          +
          +
          neida.backer@hivemind.biz
          +
          +33 (1)6 74 60 61 23
          +
          +
          +
        6. +
        7. +
          +
          +
          LH
          +
          Lyn Hollis
          +
          +
          lyn.hollis@citisys.biz
          +
          +33 (8)8 32 79 16 61
          +
          +
          +
        8. +
        9. +
          +
          +
          EH
          +
          Eleanore Hottle
          +
          +
          eleanore.hottle@tomiatech.edu
          +
          +33 (3)6 44 88 19 04
          +
          +
          +
        10. +
      22. -
      23. J
      24. -
          -
        1. -
          -
          -
          MJ
          -
          Michelle Jensen
          -
          -
          michelle.jensen@pancast.club
          -
          +33 (9)4 55 02 64 05
          -
          -
          -
        2. -
        +
          +
        1. J
        2. +
        3. +
          +
          +
          MJ
          +
          Michelle Jensen
          +
          +
          michelle.jensen@pancast.club
          +
          +33 (9)4 55 02 64 05
          +
          +
          +
        4. +
      25. -
      26. K
      27. -
          -
        1. -
          -
          -
          AK
          -
          Andy Keesee
          -
          -
          andy.keesee@fortyfour.mobi
          -
          +33 (0)5 64 21 84 37
          -
          -
          -
        2. -
        3. -
          -
          -
          EK
          -
          Edward Kelsey
          -
          -
          edward.kelsey@hivemind.co
          -
          +33 (6)6 35 56 75 23
          -
          -
          -
        4. -
        5. -
          -
          -
          MK
          -
          Maisha Kilmer
          -
          -
          maisha.kilmer@nitrosystems.eu
          -
          +33 (0)5 89 50 15 43
          -
          -
          -
        6. -
        +
          +
        1. K
        2. +
        3. +
          +
          +
          AK
          +
          Andy Keesee
          +
          +
          andy.keesee@fortyfour.mobi
          +
          +33 (0)5 64 21 84 37
          +
          +
          +
        4. +
        5. +
          +
          +
          EK
          +
          Edward Kelsey
          +
          +
          edward.kelsey@hivemind.co
          +
          +33 (6)6 35 56 75 23
          +
          +
          +
        6. +
        7. +
          +
          +
          MK
          +
          Maisha Kilmer
          +
          +
          maisha.kilmer@nitrosystems.eu
          +
          +33 (0)5 89 50 15 43
          +
          +
          +
        8. +
      28. -
      29. L
      30. -
          -
        1. -
          -
          -
          CL
          -
          Chloe Leath
          -
          -
          chloe.leath@iridimax.org
          -
          +33 (3)7 91 15 42 39
          -
          -
          -
        2. -
        3. -
          -
          -
          RL
          -
          Rosanne Leath
          -
          -
          rosanne.leath@conixco.name
          -
          +33 (9)4 11 94 93 17
          -
          -
          -
        4. -
        5. -
          -
          -
          RL
          -
          Rosanne Lenihan
          -
          -
          rosanne.lenihan@corerobotics.info
          -
          +33 (3)3 86 10 59 74
          -
          -
          -
        6. -
        7. -
          -
          -
          AL
          -
          Alexa Luck
          -
          -
          alexa.luck@grafixmedia.name
          -
          +33 (3)1 80 76 59 62
          -
          -
          -
        8. -
        +
          +
        1. L
        2. +
        3. +
          +
          +
          CL
          +
          Chloe Leath
          +
          +
          chloe.leath@iridimax.org
          +
          +33 (3)7 91 15 42 39
          +
          +
          +
        4. +
        5. +
          +
          +
          RL
          +
          Rosanne Leath
          +
          +
          rosanne.leath@conixco.name
          +
          +33 (9)4 11 94 93 17
          +
          +
          +
        6. +
        7. +
          +
          +
          RL
          +
          Rosanne Lenihan
          +
          +
          rosanne.lenihan@corerobotics.info
          +
          +33 (3)3 86 10 59 74
          +
          +
          +
        8. +
        9. +
          +
          +
          AL
          +
          Alexa Luck
          +
          +
          alexa.luck@grafixmedia.name
          +
          +33 (3)1 80 76 59 62
          +
          +
          +
        10. +
      31. -
      32. M
      33. -
          -
        1. -
          -
          -
          RM
          -
          Rico Magby
          -
          -
          rico.magby@freecast.eu
          -
          +33 (3)4 20 14 07 04
          -
          -
          -
        2. -
        3. -
          -
          -
          KM
          -
          Kirstie Mercer
          -
          -
          kirstie.mercer@tomiatech.eu
          -
          +33 (6)8 99 21 10 92
          -
          -
          -
        4. -
        5. -
          -
          -
          MM
          -
          Marcus Milligan
          -
          -
          marcus.milligan@fortyfour.me
          -
          +33 (6)8 38 98 96 07
          -
          -
          -
        6. -
        7. -
          -
          -
          MM
          -
          Madeleine Milling
          -
          -
          madeleine.milling@acousticom.gov
          -
          +33 (4)0 61 39 16 43
          -
          -
          -
        8. -
        9. -
          -
          -
          IM
          -
          Isabelle Muldoon
          -
          -
          isabelle.muldoon@fastmart.co
          -
          +33 (4)6 38 04 02 44
          -
          -
          -
        10. -
        11. -
          -
          -
          RM
          -
          Raymond Muldoon
          -
          -
          raymond.muldoon@thermolock.info
          -
          +33 (7)2 68 87 05 72
          -
          -
          -
        12. -
        +
          +
        1. M
        2. +
        3. +
          +
          +
          RM
          +
          Rico Magby
          +
          +
          rico.magby@freecast.eu
          +
          +33 (3)4 20 14 07 04
          +
          +
          +
        4. +
        5. +
          +
          +
          KM
          +
          Kirstie Mercer
          +
          +
          kirstie.mercer@tomiatech.eu
          +
          +33 (6)8 99 21 10 92
          +
          +
          +
        6. +
        7. +
          +
          +
          MM
          +
          Marcus Milligan
          +
          +
          marcus.milligan@fortyfour.me
          +
          +33 (6)8 38 98 96 07
          +
          +
          +
        8. +
        9. +
          +
          +
          MM
          +
          Madeleine Milling
          +
          +
          madeleine.milling@acousticom.gov
          +
          +33 (4)0 61 39 16 43
          +
          +
          +
        10. +
        11. +
          +
          +
          IM
          +
          Isabelle Muldoon
          +
          +
          isabelle.muldoon@fastmart.co
          +
          +33 (4)6 38 04 02 44
          +
          +
          +
        12. +
        13. +
          +
          +
          RM
          +
          Raymond Muldoon
          +
          +
          raymond.muldoon@thermolock.info
          +
          +33 (7)2 68 87 05 72
          +
          +
          +
        14. +
      34. -
      35. N
      36. -
          -
        1. -
          -
          -
          JN
          -
          Jetta Neal
          -
          -
          jetta.neal@multiserv.net
          -
          +33 (2)1 88 04 40 79
          -
          -
          -
        2. -
        +
          +
        1. N
        2. +
        3. +
          +
          +
          JN
          +
          Jetta Neal
          +
          +
          jetta.neal@multiserv.net
          +
          +33 (2)1 88 04 40 79
          +
          +
          +
        4. +
      37. -
      38. O
      39. -
          -
        1. -
          -
          -
          JO
          -
          Jay Okainmayle
          -
          -
          -
          +33 (3)0 31 26 10 64
          -
          -
          -
        2. -
        +
          +
        1. O
        2. +
        3. +
          +
          +
          JO
          +
          Jay Okainmayle
          +
          +
          +
          +33 (3)0 31 26 10 64
          +
          +
          +
        4. +
      40. -
      41. P
      42. -
          -
        1. -
          -
          -
          JP
          -
          Jay Padeutell
          -
          -
          jay.padeutell@noemail.net
          -
          -
          -
          -
        2. -
        3. -
          -
          -
          TP
          -
          Travis Paquette
          -
          -
          travis.paquette@zatheon.co
          -
          +33 (2)7 21 10 25 88
          -
          -
          -
        4. -
        5. -
          -
          -
          JP
          -
          Jamie Paschall
          -
          -
          jamie.paschall@acousticom.me
          -
          +33 (4)9 34 94 87 29
          -
          -
          -
        6. -
        7. -
          -
          -
          RP
          -
          Raylene Pullman
          -
          -
          raylene.pullman@viewtopia.me
          -
          +33 (0)7 90 41 79 27
          -
          -
          -
        8. -
        +
          +
        1. P
        2. +
        3. +
          +
          +
          JP
          +
          Jay Padeutell
          +
          +
          jay.padeutell@noemail.net
          +
          +
          +
          +
        4. +
        5. +
          +
          +
          TP
          +
          Travis Paquette
          +
          +
          travis.paquette@zatheon.co
          +
          +33 (2)7 21 10 25 88
          +
          +
          +
        6. +
        7. +
          +
          +
          JP
          +
          Jamie Paschall
          +
          +
          jamie.paschall@acousticom.me
          +
          +33 (4)9 34 94 87 29
          +
          +
          +
        8. +
        9. +
          +
          +
          RP
          +
          Raylene Pullman
          +
          +
          raylene.pullman@viewtopia.me
          +
          +33 (0)7 90 41 79 27
          +
          +
          +
        10. +
      43. -
      44. R
      45. -
          -
        1. -
          -
          -
          NR
          -
          Neida Remus
          -
          -
          neida.remus@dynalab.club
          -
          +33 (5)6 42 50 42 12
          -
          -
          -
        2. -
        3. -
          -
          -
          KR
          -
          Kurt Rohloff
          -
          -
          kurt.rohloff@corexts.org
          -
          +33 (9)8 32 78 45 41
          -
          -
          -
        4. -
        +
          +
        1. R
        2. +
        3. +
          +
          +
          NR
          +
          Neida Remus
          +
          +
          neida.remus@dynalab.club
          +
          +33 (5)6 42 50 42 12
          +
          +
          +
        4. +
        5. +
          +
          +
          KR
          +
          Kurt Rohloff
          +
          +
          kurt.rohloff@corexts.org
          +
          +33 (9)8 32 78 45 41
          +
          +
          +
        6. +
      46. -
      47. S
      48. -
          -
        1. -
          -
          -
          HS
          -
          Hannah Sager
          -
          -
          hannah.sager@haltheon.eu
          -
          +33 (0)0 16 15 45 65
          -
          -
          -
        2. -
        3. -
          -
          -
          AS
          -
          Aiden Smit
          -
          -
          aiden.smit@tomiatech.co
          -
          +33 (6)9 42 00 67 88
          -
          -
          -
        4. -
        5. -
          -
          -
          TS
          -
          Travis Sprowl
          -
          -
          travis.sprowl@vtgrafix.name
          -
          +33 (8)9 22 15 20 68
          -
          -
          -
        6. -
        7. -
          -
          -
          DS
          -
          Danny Stine
          -
          -
          danny.stine@celmax.club
          -
          +33 (3)8 94 64 96 17
          -
          -
          -
        8. -
        9. -
          -
          -
          RS
          -
          Rosanne Stine
          -
          -
          rosanne.stine@infracom.edu
          -
          +33 (9)0 11 98 31 70
          -
          -
          -
        10. -
        11. -
          -
          -
          S
          -
          StrategyLine 
          -
          -
          ivan.bryd@strategyline.eu
          -
          +33 (3)8 15 32 28 30
          -
          -
          -
        12. -
        +
          +
        1. S
        2. +
        3. +
          +
          +
          HS
          +
          Hannah Sager
          +
          +
          hannah.sager@haltheon.eu
          +
          +33 (0)0 16 15 45 65
          +
          +
          +
        4. +
        5. +
          +
          +
          AS
          +
          Aiden Smit
          +
          +
          aiden.smit@tomiatech.co
          +
          +33 (6)9 42 00 67 88
          +
          +
          +
        6. +
        7. +
          +
          +
          TS
          +
          Travis Sprowl
          +
          +
          travis.sprowl@vtgrafix.name
          +
          +33 (8)9 22 15 20 68
          +
          +
          +
        8. +
        9. +
          +
          +
          DS
          +
          Danny Stine
          +
          +
          danny.stine@celmax.club
          +
          +33 (3)8 94 64 96 17
          +
          +
          +
        10. +
        11. +
          +
          +
          RS
          +
          Rosanne Stine
          +
          +
          rosanne.stine@infracom.edu
          +
          +33 (9)0 11 98 31 70
          +
          +
          +
        12. +
        13. +
          +
          +
          S
          +
          StrategyLine 
          +
          +
          ivan.bryd@strategyline.eu
          +
          +33 (3)8 15 32 28 30
          +
          +
          +
        14. +
      49. -
      50. T
      51. -
          -
        1. -
          -
          -
          HT
          -
          Haydee Tindel
          -
          -
          haydee.tindel@galcom.com
          -
          +33 (8)7 11 08 64 48
          -
          -
          -
        2. -
        3. -
          -
          -
          WT
          -
          Warren Tindel
          -
          -
          warren.tindel@fortyfour.info
          -
          +33 (6)7 00 31 47 81
          -
          -
          -
        4. -
        5. -
          -
          -
          T
          -
          Tomiatech 
          -
          -
          edward.carter@tomiatech.com
          -
          +33 (4)8 48 86 77 17
          -
          -
          -
        6. -
        7. -
          -
          -
          T
          -
          TrioSys 
          -
          -
          rico.murphy@triosys.info
          -
          +33 (6)3 45 36 56 40
          -
          -
          -
        8. -
        +
          +
        1. T
        2. +
        3. +
          +
          +
          HT
          +
          Haydee Tindel
          +
          +
          haydee.tindel@galcom.com
          +
          +33 (8)7 11 08 64 48
          +
          +
          +
        4. +
        5. +
          +
          +
          WT
          +
          Warren Tindel
          +
          +
          warren.tindel@fortyfour.info
          +
          +33 (6)7 00 31 47 81
          +
          +
          +
        6. +
        7. +
          +
          +
          T
          +
          Tomiatech 
          +
          +
          edward.carter@tomiatech.com
          +
          +33 (4)8 48 86 77 17
          +
          +
          +
        8. +
        9. +
          +
          +
          T
          +
          TrioSys 
          +
          +
          rico.murphy@triosys.info
          +
          +33 (6)3 45 36 56 40
          +
          +
          +
        10. +
      52. -
      53. V
      54. -
          -
        1. -
          -
          -
          CV
          -
          Cory Verde
          -
          -
          cory.verde@peersys.xyz
          -
          +33 (2)3 15 97 52 48
          -
          -
          -
        2. -
        3. -
          -
          -
          MV
          -
          Madeleine Verde
          -
          -
          madeleine.verde@tomiatech.me
          -
          +33 (4)0 94 18 19 04
          -
          -
          -
        4. -
        5. -
          -
          -
          V
          -
          VTGrafix 
          -
          -
          vernon.leath@vtgrafix.co
          -
          +33 (6)7 92 54 15 17
          -
          -
          -
        6. -
        +
          +
        1. V
        2. +
        3. +
          +
          +
          CV
          +
          Cory Verde
          +
          +
          cory.verde@peersys.xyz
          +
          +33 (2)3 15 97 52 48
          +
          +
          +
        4. +
        5. +
          +
          +
          MV
          +
          Madeleine Verde
          +
          +
          madeleine.verde@tomiatech.me
          +
          +33 (4)0 94 18 19 04
          +
          +
          +
        6. +
        7. +
          +
          +
          V
          +
          VTGrafix 
          +
          +
          vernon.leath@vtgrafix.co
          +
          +33 (6)7 92 54 15 17
          +
          +
          +
        8. +
      55. -
      56. W
      57. -
          -
        1. -
          -
          -
          GW
          -
          Gavin Wallis
          -
          -
          gavin.wallis@infratouch.biz
          -
          +33 (2)4 15 56 27 30
          -
          -
          -
        2. -
        3. -
          -
          -
          RW
          -
          Raylene Wallis
          -
          -
          raylene.wallis@corerobotics.name
          -
          +33 (8)2 20 49 87 28
          -
          -
          -
        4. -
        5. -
          -
          -
          W
          -
          Westercom 
          -
          -
          anton.brandt@westercom.me
          -
          +33 (2)6 47 62 10 86
          -
          -
          -
        6. -
        7. -
          -
          -
          W
          -
          WestGate 
          -
          -
          selma.keesee@westgate.net
          -
          +33 (7)6 39 42 48 60
          -
          -
          -
        8. -
        9. -
          -
          -
          MW
          -
          Madelyn Woodrum
          -
          -
          madelyn.woodrum@airconix.xyz
          -
          +33 (8)4 54 36 85 66
          -
          -
          -
        10. -
        11. -
          -
          -
          MW
          -
          Mitch Woodrum
          -
          -
          mitch.woodrum@opticast.org
          -
          +33 (9)7 70 95 95 36
          -
          -
          -
        12. -
        +
          +
        1. W
        2. +
        3. +
          +
          +
          GW
          +
          Gavin Wallis
          +
          +
          gavin.wallis@infratouch.biz
          +
          +33 (2)4 15 56 27 30
          +
          +
          +
        4. +
        5. +
          +
          +
          RW
          +
          Raylene Wallis
          +
          +
          raylene.wallis@corerobotics.name
          +
          +33 (8)2 20 49 87 28
          +
          +
          +
        6. +
        7. +
          +
          +
          W
          +
          Westercom 
          +
          +
          anton.brandt@westercom.me
          +
          +33 (2)6 47 62 10 86
          +
          +
          +
        8. +
        9. +
          +
          +
          W
          +
          WestGate 
          +
          +
          selma.keesee@westgate.net
          +
          +33 (7)6 39 42 48 60
          +
          +
          +
        10. +
        11. +
          +
          +
          MW
          +
          Madelyn Woodrum
          +
          +
          madelyn.woodrum@airconix.xyz
          +
          +33 (8)4 54 36 85 66
          +
          +
          +
        12. +
        13. +
          +
          +
          MW
          +
          Mitch Woodrum
          +
          +
          mitch.woodrum@opticast.org
          +
          +33 (9)7 70 95 95 36
          +
          +
          +
        14. +
      58. -
      59. X
      60. -
          -
        1. -
          -
          -
          X
          -
          Xenosys 
          -
          -
          cecilia.latshaw@xenosys.club
          -
          +33 (3)2 00 61 89 63
          -
          -
          -
        2. -
        +
          +
        1. X
        2. +
        3. +
          +
          +
          X
          +
          Xenosys 
          +
          +
          cecilia.latshaw@xenosys.club
          +
          +33 (3)2 00 61 89 63
          +
          +
          +
        4. +
      @@ -1237,797 +1237,797 @@ exports[`ContactsList should render examples: ContactsList 2`] = `
      1. -
      2. EMPTY
      3. -
          -
        1. -
          -
          -
          I
          -
           
          -
          -
          isabelle.durand@cozycloud.cc
          -
          -
          -
          -
        2. -
        +
          +
        1. EMPTY
        2. +
        3. +
          +
          +
          I
          +
           
          +
          +
          isabelle.durand@cozycloud.cc
          +
          +
          +
          +
        4. +
      4. -
      5. A
      6. -
          -
        1. -
          -
          -
          A
          -
          Alexis Bickers 
          -
          -
          alexis.bickers@logico.club
          -
          +33 (9)7 58 16 92 55
          -
          -
          -
        2. -
        +
          +
        1. A
        2. +
        3. +
          +
          +
          A
          +
          Alexis Bickers 
          +
          +
          alexis.bickers@logico.club
          +
          +33 (9)7 58 16 92 55
          +
          +
          +
        4. +
      7. -
      8. B
      9. -
          -
        1. -
          -
          -
          B
          -
          Baramax 
          -
          -
          tyler.rhymer@baramax.eu
          -
          +33 (3)2 38 88 00 99
          -
          -
          -
        2. -
        3. -
          -
          -
          JB
          -
          Jenette Bourne
          -
          -
          jenette.bourne@dynaair.mobi
          -
          +33 (0)8 05 76 45 70
          -
          -
          -
        4. -
        5. -
          -
          -
          RB
          -
          Raylene Bourne
          -
          -
          raylene.bourne@tecomix.name
          -
          +33 (3)5 71 20 15 93
          -
          -
          -
        6. -
        7. -
          -
          -
          RB
          -
          Rico Bourne
          -
          -
          rico.bourne@citisys.org
          -
          +33 (1)4 84 34 52 44
          -
          -
          -
        8. -
        9. -
          -
          -
          RB
          -
          Rosanne Bourne
          -
          -
          rosanne.bourne@creatonix.xyz
          -
          +33 (1)3 93 75 09 69
          -
          -
          -
        10. -
        11. -
          -
          -
          KB
          -
          Katelin Bourquin
          -
          -
          katelin.bourquin@unilogic.biz
          -
          +33 (9)3 52 45 98 35
          -
          -
          -
        12. -
        13. -
          -
          -
          SB
          -
          Shea Brier
          -
          -
          shea.brier@logico.club
          -
          +33 (0)8 43 39 94 21
          -
          -
          -
        14. -
        15. -
          -
          -
          AB
          -
          Aiden Bryd
          -
          -
          aiden.bryd@citisys.info
          -
          +33 (1)4 80 11 59 28
          -
          -
          -
        16. -
        +
          +
        1. B
        2. +
        3. +
          +
          +
          B
          +
          Baramax 
          +
          +
          tyler.rhymer@baramax.eu
          +
          +33 (3)2 38 88 00 99
          +
          +
          +
        4. +
        5. +
          +
          +
          JB
          +
          Jenette Bourne
          +
          +
          jenette.bourne@dynaair.mobi
          +
          +33 (0)8 05 76 45 70
          +
          +
          +
        6. +
        7. +
          +
          +
          RB
          +
          Raylene Bourne
          +
          +
          raylene.bourne@tecomix.name
          +
          +33 (3)5 71 20 15 93
          +
          +
          +
        8. +
        9. +
          +
          +
          RB
          +
          Rico Bourne
          +
          +
          rico.bourne@citisys.org
          +
          +33 (1)4 84 34 52 44
          +
          +
          +
        10. +
        11. +
          +
          +
          RB
          +
          Rosanne Bourne
          +
          +
          rosanne.bourne@creatonix.xyz
          +
          +33 (1)3 93 75 09 69
          +
          +
          +
        12. +
        13. +
          +
          +
          KB
          +
          Katelin Bourquin
          +
          +
          katelin.bourquin@unilogic.biz
          +
          +33 (9)3 52 45 98 35
          +
          +
          +
        14. +
        15. +
          +
          +
          SB
          +
          Shea Brier
          +
          +
          shea.brier@logico.club
          +
          +33 (0)8 43 39 94 21
          +
          +
          +
        16. +
        17. +
          +
          +
          AB
          +
          Aiden Bryd
          +
          +
          aiden.bryd@citisys.info
          +
          +33 (1)4 80 11 59 28
          +
          +
          +
        18. +
      10. -
      11. C
      12. -
          -
        1. -
          -
          -
          LC
          -
          Lorelei Cadena
          -
          -
          lorelei.cadena@dalserve.club
          -
          +33 (4)4 72 27 49 64
          -
          -
          -
        2. -
        3. -
          -
          -
          RC
          -
          Raisa Cappel
          -
          -
          raisa.cappel@zatheon.eu
          -
          +33 (2)3 69 80 63 05
          -
          -
          -
        4. -
        5. -
          -
          -
          RC
          -
          Rosanne Chapman
          -
          -
          rosanne.chapman@peersys.gov
          -
          +33 (8)1 50 82 04 53
          -
          -
          -
        6. -
        7. -
          -
          -
          C
          -
          CoreMax 
          -
          -
          grace.muldoon@coremax.xyz
          -
          +33 (8)1 17 99 91 53
          -
          -
          -
        8. -
        +
          +
        1. C
        2. +
        3. +
          +
          +
          LC
          +
          Lorelei Cadena
          +
          +
          lorelei.cadena@dalserve.club
          +
          +33 (4)4 72 27 49 64
          +
          +
          +
        4. +
        5. +
          +
          +
          RC
          +
          Raisa Cappel
          +
          +
          raisa.cappel@zatheon.eu
          +
          +33 (2)3 69 80 63 05
          +
          +
          +
        6. +
        7. +
          +
          +
          RC
          +
          Rosanne Chapman
          +
          +
          rosanne.chapman@peersys.gov
          +
          +33 (8)1 50 82 04 53
          +
          +
          +
        8. +
        9. +
          +
          +
          C
          +
          CoreMax 
          +
          +
          grace.muldoon@coremax.xyz
          +
          +33 (8)1 17 99 91 53
          +
          +
          +
        10. +
      13. -
      14. F
      15. -
          -
        1. -
          -
          -
          FF
          -
          Francis Flinn
          -
          -
          francis.flinn@fortyfour.xyz
          -
          +33 (2)1 24 07 51 43
          -
          -
          -
        2. -
        3. -
          -
          -
          VF
          -
          Vaughn Friedrich
          -
          -
          vaughn.friedrich@seelogic.co
          -
          +33 (1)8 68 41 49 83
          -
          -
          -
        4. -
        +
          +
        1. F
        2. +
        3. +
          +
          +
          FF
          +
          Francis Flinn
          +
          +
          francis.flinn@fortyfour.xyz
          +
          +33 (2)1 24 07 51 43
          +
          +
          +
        4. +
        5. +
          +
          +
          VF
          +
          Vaughn Friedrich
          +
          +
          vaughn.friedrich@seelogic.co
          +
          +33 (1)8 68 41 49 83
          +
          +
          +
        6. +
      16. -
      17. G
      18. -
          -
        1. -
          -
          -
          KG
          -
          Kurt Goudy
          -
          -
          kurt.goudy@amsquare.edu
          -
          +33 (6)3 54 74 20 62
          -
          -
          -
        2. -
        +
          +
        1. G
        2. +
        3. +
          +
          +
          KG
          +
          Kurt Goudy
          +
          +
          kurt.goudy@amsquare.edu
          +
          +33 (6)3 54 74 20 62
          +
          +
          +
        4. +
      19. -
      20. H
      21. -
          -
        1. -
          -
          -
          MH
          -
          Max Higgins
          -
          -
          max.higgins@maxcast.com
          -
          +33 (4)5 39 48 09 09
          -
          -
          -
        2. -
        3. -
          -
          -
          H
          -
          Hivemind 
          -
          -
          neida.backer@hivemind.biz
          -
          +33 (1)6 74 60 61 23
          -
          -
          -
        4. -
        5. -
          -
          -
          LH
          -
          Lyn Hollis
          -
          -
          lyn.hollis@citisys.biz
          -
          +33 (8)8 32 79 16 61
          -
          -
          -
        6. -
        7. -
          -
          -
          EH
          -
          Eleanore Hottle
          -
          -
          eleanore.hottle@tomiatech.edu
          -
          +33 (3)6 44 88 19 04
          -
          -
          -
        8. -
        +
          +
        1. H
        2. +
        3. +
          +
          +
          MH
          +
          Max Higgins
          +
          +
          max.higgins@maxcast.com
          +
          +33 (4)5 39 48 09 09
          +
          +
          +
        4. +
        5. +
          +
          +
          H
          +
          Hivemind 
          +
          +
          neida.backer@hivemind.biz
          +
          +33 (1)6 74 60 61 23
          +
          +
          +
        6. +
        7. +
          +
          +
          LH
          +
          Lyn Hollis
          +
          +
          lyn.hollis@citisys.biz
          +
          +33 (8)8 32 79 16 61
          +
          +
          +
        8. +
        9. +
          +
          +
          EH
          +
          Eleanore Hottle
          +
          +
          eleanore.hottle@tomiatech.edu
          +
          +33 (3)6 44 88 19 04
          +
          +
          +
        10. +
      22. -
      23. J
      24. -
          -
        1. -
          -
          -
          MJ
          -
          Michelle Jensen
          -
          -
          michelle.jensen@pancast.club
          -
          +33 (9)4 55 02 64 05
          -
          -
          -
        2. -
        +
          +
        1. J
        2. +
        3. +
          +
          +
          MJ
          +
          Michelle Jensen
          +
          +
          michelle.jensen@pancast.club
          +
          +33 (9)4 55 02 64 05
          +
          +
          +
        4. +
      25. -
      26. K
      27. -
          -
        1. -
          -
          -
          AK
          -
          Andy Keesee
          -
          -
          andy.keesee@fortyfour.mobi
          -
          +33 (0)5 64 21 84 37
          -
          -
          -
        2. -
        3. -
          -
          -
          EK
          -
          Edward Kelsey
          -
          -
          edward.kelsey@hivemind.co
          -
          +33 (6)6 35 56 75 23
          -
          -
          -
        4. -
        5. -
          -
          -
          MK
          -
          Maisha Kilmer
          -
          -
          maisha.kilmer@nitrosystems.eu
          -
          +33 (0)5 89 50 15 43
          -
          -
          -
        6. -
        +
          +
        1. K
        2. +
        3. +
          +
          +
          AK
          +
          Andy Keesee
          +
          +
          andy.keesee@fortyfour.mobi
          +
          +33 (0)5 64 21 84 37
          +
          +
          +
        4. +
        5. +
          +
          +
          EK
          +
          Edward Kelsey
          +
          +
          edward.kelsey@hivemind.co
          +
          +33 (6)6 35 56 75 23
          +
          +
          +
        6. +
        7. +
          +
          +
          MK
          +
          Maisha Kilmer
          +
          +
          maisha.kilmer@nitrosystems.eu
          +
          +33 (0)5 89 50 15 43
          +
          +
          +
        8. +
      28. -
      29. L
      30. -
          -
        1. -
          -
          -
          CL
          -
          Chloe Leath
          -
          -
          chloe.leath@iridimax.org
          -
          +33 (3)7 91 15 42 39
          -
          -
          -
        2. -
        3. -
          -
          -
          RL
          -
          Rosanne Leath
          -
          -
          rosanne.leath@conixco.name
          -
          +33 (9)4 11 94 93 17
          -
          -
          -
        4. -
        5. -
          -
          -
          RL
          -
          Rosanne Lenihan
          -
          -
          rosanne.lenihan@corerobotics.info
          -
          +33 (3)3 86 10 59 74
          -
          -
          -
        6. -
        7. -
          -
          -
          AL
          -
          Alexa Luck
          -
          -
          alexa.luck@grafixmedia.name
          -
          +33 (3)1 80 76 59 62
          -
          -
          -
        8. -
        +
          +
        1. L
        2. +
        3. +
          +
          +
          CL
          +
          Chloe Leath
          +
          +
          chloe.leath@iridimax.org
          +
          +33 (3)7 91 15 42 39
          +
          +
          +
        4. +
        5. +
          +
          +
          RL
          +
          Rosanne Leath
          +
          +
          rosanne.leath@conixco.name
          +
          +33 (9)4 11 94 93 17
          +
          +
          +
        6. +
        7. +
          +
          +
          RL
          +
          Rosanne Lenihan
          +
          +
          rosanne.lenihan@corerobotics.info
          +
          +33 (3)3 86 10 59 74
          +
          +
          +
        8. +
        9. +
          +
          +
          AL
          +
          Alexa Luck
          +
          +
          alexa.luck@grafixmedia.name
          +
          +33 (3)1 80 76 59 62
          +
          +
          +
        10. +
      31. -
      32. M
      33. -
          -
        1. -
          -
          -
          RM
          -
          Rico Magby
          -
          -
          rico.magby@freecast.eu
          -
          +33 (3)4 20 14 07 04
          -
          -
          -
        2. -
        3. -
          -
          -
          KM
          -
          Kirstie Mercer
          -
          -
          kirstie.mercer@tomiatech.eu
          -
          +33 (6)8 99 21 10 92
          -
          -
          -
        4. -
        5. -
          -
          -
          MM
          -
          Marcus Milligan
          -
          -
          marcus.milligan@fortyfour.me
          -
          +33 (6)8 38 98 96 07
          -
          -
          -
        6. -
        7. -
          -
          -
          MM
          -
          Madeleine Milling
          -
          -
          madeleine.milling@acousticom.gov
          -
          +33 (4)0 61 39 16 43
          -
          -
          -
        8. -
        9. -
          -
          -
          IM
          -
          Isabelle Muldoon
          -
          -
          isabelle.muldoon@fastmart.co
          -
          +33 (4)6 38 04 02 44
          -
          -
          -
        10. -
        11. -
          -
          -
          RM
          -
          Raymond Muldoon
          -
          -
          raymond.muldoon@thermolock.info
          -
          +33 (7)2 68 87 05 72
          -
          -
          -
        12. -
        +
          +
        1. M
        2. +
        3. +
          +
          +
          RM
          +
          Rico Magby
          +
          +
          rico.magby@freecast.eu
          +
          +33 (3)4 20 14 07 04
          +
          +
          +
        4. +
        5. +
          +
          +
          KM
          +
          Kirstie Mercer
          +
          +
          kirstie.mercer@tomiatech.eu
          +
          +33 (6)8 99 21 10 92
          +
          +
          +
        6. +
        7. +
          +
          +
          MM
          +
          Marcus Milligan
          +
          +
          marcus.milligan@fortyfour.me
          +
          +33 (6)8 38 98 96 07
          +
          +
          +
        8. +
        9. +
          +
          +
          MM
          +
          Madeleine Milling
          +
          +
          madeleine.milling@acousticom.gov
          +
          +33 (4)0 61 39 16 43
          +
          +
          +
        10. +
        11. +
          +
          +
          IM
          +
          Isabelle Muldoon
          +
          +
          isabelle.muldoon@fastmart.co
          +
          +33 (4)6 38 04 02 44
          +
          +
          +
        12. +
        13. +
          +
          +
          RM
          +
          Raymond Muldoon
          +
          +
          raymond.muldoon@thermolock.info
          +
          +33 (7)2 68 87 05 72
          +
          +
          +
        14. +
      34. -
      35. N
      36. -
          -
        1. -
          -
          -
          JN
          -
          Jetta Neal
          -
          -
          jetta.neal@multiserv.net
          -
          +33 (2)1 88 04 40 79
          -
          -
          -
        2. -
        +
          +
        1. N
        2. +
        3. +
          +
          +
          JN
          +
          Jetta Neal
          +
          +
          jetta.neal@multiserv.net
          +
          +33 (2)1 88 04 40 79
          +
          +
          +
        4. +
      37. -
      38. O
      39. -
          -
        1. -
          -
          -
          JO
          -
          Jay Okainmayle
          -
          -
          -
          +33 (3)0 31 26 10 64
          -
          -
          -
        2. -
        +
          +
        1. O
        2. +
        3. +
          +
          +
          JO
          +
          Jay Okainmayle
          +
          +
          +
          +33 (3)0 31 26 10 64
          +
          +
          +
        4. +
      40. -
      41. P
      42. -
          -
        1. -
          -
          -
          JP
          -
          Jay Padeutell
          -
          -
          jay.padeutell@noemail.net
          -
          -
          -
          -
        2. -
        3. -
          -
          -
          TP
          -
          Travis Paquette
          -
          -
          travis.paquette@zatheon.co
          -
          +33 (2)7 21 10 25 88
          -
          -
          -
        4. -
        5. -
          -
          -
          JP
          -
          Jamie Paschall
          -
          -
          jamie.paschall@acousticom.me
          -
          +33 (4)9 34 94 87 29
          -
          -
          -
        6. -
        7. -
          -
          -
          RP
          -
          Raylene Pullman
          -
          -
          raylene.pullman@viewtopia.me
          -
          +33 (0)7 90 41 79 27
          -
          -
          -
        8. -
        +
          +
        1. P
        2. +
        3. +
          +
          +
          JP
          +
          Jay Padeutell
          +
          +
          jay.padeutell@noemail.net
          +
          +
          +
          +
        4. +
        5. +
          +
          +
          TP
          +
          Travis Paquette
          +
          +
          travis.paquette@zatheon.co
          +
          +33 (2)7 21 10 25 88
          +
          +
          +
        6. +
        7. +
          +
          +
          JP
          +
          Jamie Paschall
          +
          +
          jamie.paschall@acousticom.me
          +
          +33 (4)9 34 94 87 29
          +
          +
          +
        8. +
        9. +
          +
          +
          RP
          +
          Raylene Pullman
          +
          +
          raylene.pullman@viewtopia.me
          +
          +33 (0)7 90 41 79 27
          +
          +
          +
        10. +
      43. -
      44. R
      45. -
          -
        1. -
          -
          -
          NR
          -
          Neida Remus
          -
          -
          neida.remus@dynalab.club
          -
          +33 (5)6 42 50 42 12
          -
          -
          -
        2. -
        3. -
          -
          -
          KR
          -
          Kurt Rohloff
          -
          -
          kurt.rohloff@corexts.org
          -
          +33 (9)8 32 78 45 41
          -
          -
          -
        4. -
        +
          +
        1. R
        2. +
        3. +
          +
          +
          NR
          +
          Neida Remus
          +
          +
          neida.remus@dynalab.club
          +
          +33 (5)6 42 50 42 12
          +
          +
          +
        4. +
        5. +
          +
          +
          KR
          +
          Kurt Rohloff
          +
          +
          kurt.rohloff@corexts.org
          +
          +33 (9)8 32 78 45 41
          +
          +
          +
        6. +
      46. -
      47. S
      48. -
          -
        1. -
          -
          -
          HS
          -
          Hannah Sager
          -
          -
          hannah.sager@haltheon.eu
          -
          +33 (0)0 16 15 45 65
          -
          -
          -
        2. -
        3. -
          -
          -
          AS
          -
          Aiden Smit
          -
          -
          aiden.smit@tomiatech.co
          -
          +33 (6)9 42 00 67 88
          -
          -
          -
        4. -
        5. -
          -
          -
          TS
          -
          Travis Sprowl
          -
          -
          travis.sprowl@vtgrafix.name
          -
          +33 (8)9 22 15 20 68
          -
          -
          -
        6. -
        7. -
          -
          -
          DS
          -
          Danny Stine
          -
          -
          danny.stine@celmax.club
          -
          +33 (3)8 94 64 96 17
          -
          -
          -
        8. -
        9. -
          -
          -
          RS
          -
          Rosanne Stine
          -
          -
          rosanne.stine@infracom.edu
          -
          +33 (9)0 11 98 31 70
          -
          -
          -
        10. -
        11. -
          -
          -
          S
          -
          StrategyLine 
          -
          -
          ivan.bryd@strategyline.eu
          -
          +33 (3)8 15 32 28 30
          -
          -
          -
        12. -
        +
          +
        1. S
        2. +
        3. +
          +
          +
          HS
          +
          Hannah Sager
          +
          +
          hannah.sager@haltheon.eu
          +
          +33 (0)0 16 15 45 65
          +
          +
          +
        4. +
        5. +
          +
          +
          AS
          +
          Aiden Smit
          +
          +
          aiden.smit@tomiatech.co
          +
          +33 (6)9 42 00 67 88
          +
          +
          +
        6. +
        7. +
          +
          +
          TS
          +
          Travis Sprowl
          +
          +
          travis.sprowl@vtgrafix.name
          +
          +33 (8)9 22 15 20 68
          +
          +
          +
        8. +
        9. +
          +
          +
          DS
          +
          Danny Stine
          +
          +
          danny.stine@celmax.club
          +
          +33 (3)8 94 64 96 17
          +
          +
          +
        10. +
        11. +
          +
          +
          RS
          +
          Rosanne Stine
          +
          +
          rosanne.stine@infracom.edu
          +
          +33 (9)0 11 98 31 70
          +
          +
          +
        12. +
        13. +
          +
          +
          S
          +
          StrategyLine 
          +
          +
          ivan.bryd@strategyline.eu
          +
          +33 (3)8 15 32 28 30
          +
          +
          +
        14. +
      49. -
      50. T
      51. -
          -
        1. -
          -
          -
          HT
          -
          Haydee Tindel
          -
          -
          haydee.tindel@galcom.com
          -
          +33 (8)7 11 08 64 48
          -
          -
          -
        2. -
        3. -
          -
          -
          WT
          -
          Warren Tindel
          -
          -
          warren.tindel@fortyfour.info
          -
          +33 (6)7 00 31 47 81
          -
          -
          -
        4. -
        5. -
          -
          -
          T
          -
          Tomiatech 
          -
          -
          edward.carter@tomiatech.com
          -
          +33 (4)8 48 86 77 17
          -
          -
          -
        6. -
        7. -
          -
          -
          T
          -
          TrioSys 
          -
          -
          rico.murphy@triosys.info
          -
          +33 (6)3 45 36 56 40
          -
          -
          -
        8. -
        +
          +
        1. T
        2. +
        3. +
          +
          +
          HT
          +
          Haydee Tindel
          +
          +
          haydee.tindel@galcom.com
          +
          +33 (8)7 11 08 64 48
          +
          +
          +
        4. +
        5. +
          +
          +
          WT
          +
          Warren Tindel
          +
          +
          warren.tindel@fortyfour.info
          +
          +33 (6)7 00 31 47 81
          +
          +
          +
        6. +
        7. +
          +
          +
          T
          +
          Tomiatech 
          +
          +
          edward.carter@tomiatech.com
          +
          +33 (4)8 48 86 77 17
          +
          +
          +
        8. +
        9. +
          +
          +
          T
          +
          TrioSys 
          +
          +
          rico.murphy@triosys.info
          +
          +33 (6)3 45 36 56 40
          +
          +
          +
        10. +
      52. -
      53. V
      54. -
          -
        1. -
          -
          -
          CV
          -
          Cory Verde
          -
          -
          cory.verde@peersys.xyz
          -
          +33 (2)3 15 97 52 48
          -
          -
          -
        2. -
        3. -
          -
          -
          MV
          -
          Madeleine Verde
          -
          -
          madeleine.verde@tomiatech.me
          -
          +33 (4)0 94 18 19 04
          -
          -
          -
        4. -
        5. -
          -
          -
          V
          -
          VTGrafix 
          -
          -
          vernon.leath@vtgrafix.co
          -
          +33 (6)7 92 54 15 17
          -
          -
          -
        6. -
        +
          +
        1. V
        2. +
        3. +
          +
          +
          CV
          +
          Cory Verde
          +
          +
          cory.verde@peersys.xyz
          +
          +33 (2)3 15 97 52 48
          +
          +
          +
        4. +
        5. +
          +
          +
          MV
          +
          Madeleine Verde
          +
          +
          madeleine.verde@tomiatech.me
          +
          +33 (4)0 94 18 19 04
          +
          +
          +
        6. +
        7. +
          +
          +
          V
          +
          VTGrafix 
          +
          +
          vernon.leath@vtgrafix.co
          +
          +33 (6)7 92 54 15 17
          +
          +
          +
        8. +
      55. -
      56. W
      57. -
          -
        1. -
          -
          -
          GW
          -
          Gavin Wallis
          -
          -
          gavin.wallis@infratouch.biz
          -
          +33 (2)4 15 56 27 30
          -
          -
          -
        2. -
        3. -
          -
          -
          RW
          -
          Raylene Wallis
          -
          -
          raylene.wallis@corerobotics.name
          -
          +33 (8)2 20 49 87 28
          -
          -
          -
        4. -
        5. -
          -
          -
          W
          -
          Westercom 
          -
          -
          anton.brandt@westercom.me
          -
          +33 (2)6 47 62 10 86
          -
          -
          -
        6. -
        7. -
          -
          -
          W
          -
          WestGate 
          -
          -
          selma.keesee@westgate.net
          -
          +33 (7)6 39 42 48 60
          -
          -
          -
        8. -
        9. -
          -
          -
          MW
          -
          Madelyn Woodrum
          -
          -
          madelyn.woodrum@airconix.xyz
          -
          +33 (8)4 54 36 85 66
          -
          -
          -
        10. -
        11. -
          -
          -
          MW
          -
          Mitch Woodrum
          -
          -
          mitch.woodrum@opticast.org
          -
          +33 (9)7 70 95 95 36
          -
          -
          -
        12. -
        +
          +
        1. W
        2. +
        3. +
          +
          +
          GW
          +
          Gavin Wallis
          +
          +
          gavin.wallis@infratouch.biz
          +
          +33 (2)4 15 56 27 30
          +
          +
          +
        4. +
        5. +
          +
          +
          RW
          +
          Raylene Wallis
          +
          +
          raylene.wallis@corerobotics.name
          +
          +33 (8)2 20 49 87 28
          +
          +
          +
        6. +
        7. +
          +
          +
          W
          +
          Westercom 
          +
          +
          anton.brandt@westercom.me
          +
          +33 (2)6 47 62 10 86
          +
          +
          +
        8. +
        9. +
          +
          +
          W
          +
          WestGate 
          +
          +
          selma.keesee@westgate.net
          +
          +33 (7)6 39 42 48 60
          +
          +
          +
        10. +
        11. +
          +
          +
          MW
          +
          Madelyn Woodrum
          +
          +
          madelyn.woodrum@airconix.xyz
          +
          +33 (8)4 54 36 85 66
          +
          +
          +
        12. +
        13. +
          +
          +
          MW
          +
          Mitch Woodrum
          +
          +
          mitch.woodrum@opticast.org
          +
          +33 (9)7 70 95 95 36
          +
          +
          +
        14. +
      58. -
      59. X
      60. -
          -
        1. -
          -
          -
          X
          -
          Xenosys 
          -
          -
          cecilia.latshaw@xenosys.club
          -
          +33 (3)2 00 61 89 63
          -
          -
          -
        2. -
        +
          +
        1. X
        2. +
        3. +
          +
          +
          X
          +
          Xenosys 
          +
          +
          cecilia.latshaw@xenosys.club
          +
          +33 (3)2 00 61 89 63
          +
          +
          +
        4. +
      diff --git a/test/jestsetup.js b/test/jestsetup.js index d9e0cc5c9b..8d91f62429 100644 --- a/test/jestsetup.js +++ b/test/jestsetup.js @@ -8,6 +8,8 @@ global.shallow = shallow const isDeprecatedLifecycleWarning = (msg, componentName) => { return ( + msg && + msg.includes && msg.includes('has been renamed, and is not recommended for use') && msg.includes(componentName) ) @@ -45,7 +47,11 @@ const ignoredWarnings = { }, ModalAriaLabel: { reason: 'Dont know', - matcher: msg => msg.includes('aria-label') && msg.includes('If your modal') + matcher: msg => + msg && + msg.includes && + msg.includes('aria-label') && + msg.includes('If your modal') } }