it('AppComponent should have a TextArea with given text value', () => {
    const textArea = component.root.findByType(TextArea)
    expect(textArea.props.value).toEqual(initialValue)
  })